PHP - interesting problem...?
I need to display the source code of this encrypted text. However, I can't seem to make it display the source code, only the final product.
How would I write a php page to either load the source into a file or display it to copy? Here's the line:
eval(base64_decode("Pz4gPGRpdiBpZD0iZGF0dW1fdWhyem VpdCI"));
I tried to put it within <textarea> tags, but it still wouldn't display the source.
Just try this... since it won't show the whole snippet.
eval(base64_decode("Pz4gPGRpdiBpZD"));
I need to display the source code of the evaluated expression. It will translate to php source code when decrypted. I don't need to display the snippet, but the result of the snippet - if that makes sense.
Like this... but it's not working
<textarea>
<?php
eval(base64_decode("Pz4gPGRpdiB"));
?>
</textarea>
But it won't show the source php code, only the resulting html that the source code produces.
|