Is this possible?
If a script is on a page, then it will show
echo "Hello World";
on another website.
If a script isn't on the page, then it will change another website into
this:
echo "You need the script";
I got some of this already:
if ($_GET['affcode'] && is_numeric($_GET['affcode']) {
echo 'Welcome Affiliate!!';
} else {
echo 'Welcome Guest';
}
but what should i do to replace affcode? A website link? because the php code is on an external site.
