Forum Moderators: coopster
Is this possible?
Below is the script I'm using.
if(stripos(file_get_contents('http://www.othersite.com/page.html'), '<script')!== false)
echo('You\'re an affiliate.');
else
echo('You\'re a guest.')
EDIT:
also is it possible to "search" for a tag or something in the text code and delete it?
Have you tried str_replace [us2.php.net] or preg_replace [us2.php.net]? This is a good place to start.
Good luck!