Hello again,
I've made a text file, and in with all the information is a password. It's easy to find, if you know where to look, so I'd like to be able to hide it. Here's my text file:
Code:
***Stuff I need to hide***Just some Information|
Now, I have my script to echo everything to the page. It needs to do that, otherwise my other scripts won't work.
How can I just output "Just some Information" minus the ***Stuff I need to hide***?
I've thought, just echo everything after the second find of "***", but I need to have it there, just invisible.
I've also tried this:
Code:
<?php $hiddenstuff = "Stuff I need to hide"; ?>Just some Information|
But when you view the source, you can see in it "<?php $hiddenstuff = "Stuff I need to hide"; ?>Just some Information".
So I need a way for it to echo to the page, but not be visible to either the page or the source...?
How can I do this? It's stumped me for about 10 minutes...
|