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); }
echo aes_crypt(aes_crypt($string1, 1), 2); //echo $cipher->decrypt($cipher->encrypt($plaintext)); /*if(!empty($string2)){ echo aes_crypt($string2, 2); }*/ ?>
|