can someone tell me what is wrong with this code:
<?
gurk(1);
gurk(2);
funtion gurk($number){
if ($number==1){
print "hello world, this is a 1";
else if ($number==2){
print "hello, this is a 2";
}//end if
}// end gurk
?>
It gives me the following error:
Parse error: parse error, unexpected T_STRING in /home/gregg/xwreck.com/php/gurk.php on line 6