I am trying to echo an ascii crypted text like this:
$x = encrypt("hello there");
echo $x;
the encrypt function returns
hello there
but on the screen it is printed as “hello there”.
how can i print the original ascii value ?
You can use
htmlentities()around encrypt to escape the &.