mflaim16 Posted July 5, 2006 Share Posted July 5, 2006 I'm getting the following error Parse error: parse error in C:\Inetpub\vhosts\moriscofuneralhomeinc.com\httpdocs\events_public3.php on line 88I looked at my code and to me (first php script) looks ok. Below is the code<?php $sql = "SELECT DT_Event FROM events" // check if username exists in database. if (!($sql)) print mysql_error(); $result = mysql_query($sql); $num_rows = mysql_num_rows($result); $row = 0; $rowcolor = ""; if ( $num_rows == 0 ) { //Nothing returnedIt goes longer but I choped it down to the error part..............Any help would be great......Mark Quote Link to comment https://forums.phpfreaks.com/topic/13730-noob-parse-error/ Share on other sites More sharing options...
Orio Posted July 5, 2006 Share Posted July 5, 2006 $sql = "SELECT DT_Event FROM events"Is missing a semicolon. Should be:$sql = "SELECT DT_Event FROM events"[b][color=red];[/color][/b]Orio. Quote Link to comment https://forums.phpfreaks.com/topic/13730-noob-parse-error/#findComment-53293 Share on other sites More sharing options...
mflaim16 Posted July 5, 2006 Author Share Posted July 5, 2006 thanks Orio for the quick replyMark Quote Link to comment https://forums.phpfreaks.com/topic/13730-noob-parse-error/#findComment-53313 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.