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
header("Content-Type: text/html;charset=utf-8");
$miwen="a1zLbgQsCESEIqRLwuQAyMwLyq2L5VwBxqGA3RQAyumZ0tmMvSGM2ZwB4tws";
$a = base64_decode(strrev(str_rot13($miwen)));
$fin = "";
for($x=0; $x<strlen($a); $x++) {
$c = substr($a,$x,1);
$_ = ord($c)-1;
$_c = chr($_);
$fin = $fin.$_c;
}
echo strrev($fin);
?>