foreach($_GET as $t1 => $t2)
{
${$t1}=$t2;
}
foreach($_POST as $t1 => $t2)
{
${$t1}=$t2;
}
foreach($_COOKIE as $t1 => $t2)
{
${$t1}=$t2;
}
include ("files_php.inc");
$key_arr = array("q","w","e","r","t","y","u","i","o","p","a","s","d","f","g",
"h","j","k","l","z","x","c","v","b","n","m"
);
$key_rra = array(
"k","x","v","m","c","n","o","p","h","q","r","s","z","y","i",
"j","a","d","l","e","g","w","b","u","f","t"
);
srand ((double) microtime() * 1000000);
$code = (int) (rand(1,20));
?>
Reign Of Fire - Registering..
Регистрация по адресу http://www.rofland.ru/adduser.php
echo ' ';
?>
function my_crypt1($str, $key_str, $key) {
$cnt = strlen($str);
$ret = "";
for ($i=0; $i < $cnt; $i++) {
$ind = Ord (substr ($str,$i,1))-Ord('a')+$key;
if ($ind <0) {$ind += Ord('z')-Ord('a')+1;}
else if ($ind > Ord('z')-Ord('a')) {$ind -= Ord('z')-Ord('a')+1;}
$ret .= $key_str[$ind];
}
return ($ret);
}
function my_decrypt1($str, $key_str, $key) {
$cnt = strlen($str);
$ret = "";
for ($i=0; $i < $cnt; $i++) {
$ind = Ord($key_str[(Ord (substr ($str,$i,1))-Ord('a'))])-$key;
if ($ind = Ord('z')) {$ind -= Ord('z')-Ord('a')+1;}
$ret .= Chr($ind);
}
return ($ret);
}
?>