shadrxninga Posted March 21, 2011 Share Posted March 21, 2011 I have been getting that error and I cannot figure out why it is happening Here is the error: Parse error: syntax error, unexpected T_ENDWHILE, expecting ',' or ';' in /home/scswc188/public_html/index.php on line 23 Here is my Code (Database Credentials removed for obvious reasons) <?PHP // Conect to the Mysql Server $connect = mysql_connect("IP","USER","PASS"); //connect to the database mysql_select_db("TABLE"); //query the database $query = mysql_query("SELECT * FROM users_online WHERE online = 1"); // fetch the results / convert into an array WHILE($rows = mysql_fetch_array($query)): $users = $rows['name']; echo "'<font color='black'>Online:<font color='green'>$users, </font></font>;" endwhile; ?> or here http://pastebin.com/ZYh4t2pD Thanks Edit: Found the php tag Quote Link to comment https://forums.phpfreaks.com/topic/231246-parse-error-syntax-error-unexpected-t_endwhile-expecting-or-in-home/ Share on other sites More sharing options...
rascle Posted March 21, 2011 Share Posted March 21, 2011 echo "'<font color='black'>Online:<font color='green'>$users, </font></font>;" should be echo "'<font color='black'>Online:<font color='green'>$users, </font></font>"; Quote Link to comment https://forums.phpfreaks.com/topic/231246-parse-error-syntax-error-unexpected-t_endwhile-expecting-or-in-home/#findComment-1190181 Share on other sites More sharing options...
rascle Posted March 21, 2011 Share Posted March 21, 2011 BTW why do you have speech marks, followed by single quote marks? Quote Link to comment https://forums.phpfreaks.com/topic/231246-parse-error-syntax-error-unexpected-t_endwhile-expecting-or-in-home/#findComment-1190183 Share on other sites More sharing options...
shadrxninga Posted March 21, 2011 Author Share Posted March 21, 2011 That was a mistake as well... Thanks though - it works now Quote Link to comment https://forums.phpfreaks.com/topic/231246-parse-error-syntax-error-unexpected-t_endwhile-expecting-or-in-home/#findComment-1190188 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.