
11.03.2010, 23:11
|
|
Познающий
Регистрация: 25.12.2009
Сообщений: 95
Провел на форуме: 750417
Репутация:
51
|
|
2BD:
base64_encode($data);
From BD:
function dec($text)
{
$text=stripslashes(htmlspecialchars(base64_decode( $text)));
return($text);
}
Usage:
echo(dec($text_from_base));
|
|
|