Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<? eval(gzinflate(base64_decode(' jVNRa9swEH4P5D8cZmAHlnZrx1rSpqlJzPpURpps 7Mko8qUWVSxHk..
Decoded Output download
?><?php
// Replace with your database credentials
$servername = "localhost";
$username = "u608374782_Velo_Aledany";
$password = "Aa123123123@@";
$dbname = "u608374782_Velo_Aledany";
// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
// Get current date and time
$currentDateTime = date('Y-m-d H:i:s');
// Update subscriptions with expired end times
$sql = "UPDATE get_key SET status = 'END' WHERE end_time <= '$currentDateTime' AND status = 'Active'";
if ($conn->query($sql) === TRUE) {
echo "Subscriptions updated successfully";
} else {
echo "Error updating subscriptions: " . $conn->error;
}
// Close the database connection
$conn->close();
?><?
Did this file decode correctly?
Original Code
<? eval(gzinflate(base64_decode('
jVNRa9swEH4P5D8cZmAHlnZrx1rSpqlJzPpURpps
7Mko8qUWVSxHkpuZ0v/ek5x5dtnDjB/ku/vuvvs+
eXZzPSvzcjg4PYUllpJxhIOwOdSq0pAxyzbMIHCN
GRZWMGmGgw8G9TPqgu0QphBIxZnMlbHBFeUq8zdT
ff10eX7x5eLyLP2BUqWxxIwVta8rmTEHpTNXF7PP
Z+fNe3vrs9nmP3p40nONzBJBVRTIrVAFod0HYQs8
wK42eymiDuWP0HKk4x8adGxmjtrGOfKnXl+xhcj3
Ht8cwylqrfQIXoYDoCcTGAXzFgFbJojtBAI4gX8C
adbrcdw3tMArrUllJzsCKzKwYodunya+oPBKeFlc
RRT+Gu/GGdxNxMSELe916eGm2hiuRemImMZS/F0K
8hHw2NlbuZdO5fX3RbxK4BFt+oQ1PCQrMJbZylAy
TO4XIfy8S5aJg6YOCtcUf88rhPh+0cHFpMIzhs6q
jnT7CnUducEjmE6nsFquk1ZB5LmC4KHHvfILZbQR
52jMtpLS2/8KKOlq9pCJk7VBiOKxL0LPB69/R/65
VNTL5ti58++vFLnnqiIn9Yz+mzc=
'))); ?>
Function Calls
gzinflate | 1 |
base64_decode | 1 |
Stats
MD5 | dc70d248377c0ccbde4fc2c4c48c1188 |
Eval Count | 1 |
Decode Time | 56 ms |