If I have a str_rot13 how to I just do it in plain text with out the str_rot13? Do I just remove the str_rot13 from the function?
Lets say I have this:
$path = str_rot13('/uryybjbeyq/');
All I have to do is this??
$path = ('/uryybjbeyq/');
What do you want to do? If you want to reverse a str_rot13(), just use str_rot13().
laserlight wrote:What do you want to do? If you want to reverse a str_rot13(), just use str_rot13().
I don't want to use str_13 period. I want it to look like this: $path = ('/helloworld/');
Thanks I'm such a newbie still.