darkfreaks Posted April 14, 2009 Share Posted April 14, 2009 unexpected { on line 11 <?php if(!preg_match("[0-9]",$_POST['height']){$error['height']="<font color=red>Only Numbers Allowed!</font>"; }else{unset($error['height']);} //line 11 ?> Link to comment https://forums.phpfreaks.com/topic/153973-solved-parse-error/ Share on other sites More sharing options...
MasterACE14 Posted April 14, 2009 Share Posted April 14, 2009 missing a parenthesis after $_POST['height'] <?php if(!preg_match("[0-9]",$_POST['height'])) // <<< Link to comment https://forums.phpfreaks.com/topic/153973-solved-parse-error/#findComment-809276 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.