|
Posted by David Haynes on 09/28/24 11:44
The Numerator wrote:
> The only problem with the code that David gave me is that the title,
> and the meta tags don't work. For example, the title is "Stuff -"
> instead of "Stuff - Title", etc...
>
This would happen if $_GET['type'] was not one of '', 'youaremight' or
'justgotowned'.
Try putting a default case into the switch. e.g.
case 'justgotowned':
$msg="Just Got Owned";
break;
default:
$msg="type is not legal";
break;
}
-david-
Navigation:
[Reply to this message]
|