How do I hide my vars with a white background?

Matthewza

Posting Freak
Apr 20, 2012
777
77
Hello Devbest,

I need serious help how do I hide my vars file it's php with a white background? example he added a php code to hide all the texts and make it so there is nothing in the page but there is. Anyway to do this I tried using <span style="color: white; background:white;> it works in google chrome but not in internet explorer do you know why?

Thanks,
Matthew
 

Li1M0ST3Rz

I <3 Bianca
Sep 13, 2010
269
166
I honestly think i found few method first require php
PHP:
<?php
$url= $_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
$needle = "view-source:";
if (strpos($url,$needle)) { echo "You can not see me";}
else {
//The rest of my index page
}
?>

Ohh nevermind! it require .htacess
 

Users who are viewing this thread

Top