PHP Code:
function onCreated()
{
temp.text = "Hello, how are you?";
for (temp.I = 0; temp.I < 10; temp.I++)
{
temp.text = base64encode(temp.text);
}
echo("Encrypted: " @ temp.text);
for (temp.I = 0; temp.I < 10; temp.I++)
{
temp.text = base64decode(temp.text);
}
echo("Decrypted: " @ temp.text);
}