PDA

View Full Version : Help me with this code?


v123shine
03-05-2012, 08:47 PM
I know, we can hide content from SE using this code:

!$show['search_engine']

I created a custom page using php and i want to hide several text/content from SE but real user (from browser like firefox, chrome, opera) can view the text/content.

Can someone help me to hide content from SE in php page, please!

Disasterpiece
03-05-2012, 08:58 PM
if (!$show['search_engine']) {
echo "secret text";
}
?