Thats kind of what i was asking... scenario:
<?
echo "\n<all the beginning html crud>\n";
switch ($funtion) {
case 0:
print "This is Case 0";
break;
case 1:
print "This is Case 1";
break;
case 2:
print "This is Case 2";
break;
default:
print "Welcome to our page, please choose a case";
}
echo "
?>
Will this by default show my page and give me the default case and say "Welcome to our page, please choose a case! .. that is my question 🙂
-Ryan