Hi! Could we please enable some services and cookies to improve your experience and our website?
Online Sandbox for SQL and PHP: Write, Run, Test, and Share SQL Queries and PHP Code
<?php
$key = '742e2ac07b25f020';
for ($i=1; $i <= 1; $i++) {
$post = "qs4s7icUx8vtUb+AIPfHMkhuUkCsRTP+bgwhO4Q+i/biqL8/9f5jcx46fSujGI+7kOWHutOpZ+Jff2Slds/Wuo1CvxMtWTkd/GLyrm/UyvjaV4HjtjC49b+citFehJAj";
$post = openssl_decrypt($post, "AES128", $key);
echo $post;
preg_match_all('/\"(.*?)\"/', $post, $echopost);
echo $echopost;
$str = str_replace("\"", "", $echopost[0][3]);
echo base64_decode($str);
echo "<br>";
}
?>