i know how to get php to recover and variables stored in a page url but how can i make an if statement that check to see fi there arent any e.g.:
if($urlvariable EXISTS)
{
echo "this is the content page loaded";
}
else *IF urlvariable DOes NOT EXIST*
{
echo $welcomemessage;
}
that what im tryng to acheive obviously i know it cant literaly be done like that but i hope that makes it clearer what im trying to do?