switch statement
what is wrong with this?
<?
switch($go) {
case "over":
echo "images/contact.jpg";
break;
case "folio":
echo "images/contact.jpg";
break;
case "contact":
echo "images/contact2.jpg";
break;
default;
echo "images/contact.jpg";
break;
}
?>
when i use this script it doesnt work on my server but php does work... how is this posible?
