Foser Posted July 3, 2007 Share Posted July 3, 2007 Project Name: <label><?php echo("<select name=\"project_name\">"); $query = mysql_query("SELECT names FROM projects"); while(mysql_fetch_array($query)){ echo "<option value='{$query['name']}'>{$query['name']</option>"; } echo "</select>"; ?> </label> this is the error i get Parse error: syntax error, unexpected '<', expecting '}' in C:\WAMP\www\Projects\LogiPlan\main\admin\cregister.php on line 55 line 55 is : echo "<option value='{$query['name']}'>{$query['name']</option>"; im not sure what is the mistake. Quote Link to comment Share on other sites More sharing options...
trq Posted July 3, 2007 Share Posted July 3, 2007 Your missing a } echo "<option value='{$query['name']}'>{$query['name']}</option>"; Quote Link to comment 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.