hi there !
i want to finalize a script that will transform text into numbers and print the result. Also i want to transform the result back in the original text. yea, a kind of crypt/decrypt script. forget to tell you... using a key...
so:
<?php
$key = $_POST['key'];
$text = $_POST['text'];
/*
so here i want to make something like
"a=$key-45", or "b=$key+65", where "a" , "b" are letters from the text.
i guess the whole thing will be parsed into another variable, and i guess i'd need a delimiter to, like in the implode/explode functions...
*/
echo $result;
?>