1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php require_once('check_login.php');
//exit; $string1 = "address";
if(!empty($string1)){ echo aes_crypt($string1, 1); }
$string2 = "aPMlyWJ4FVmscSslrmZmYw==";
if(!empty($string2)){ echo aes_crypt($string2, 2); } ?>
|