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. Link to comment https://forums.phpfreaks.com/topic/58226-solved-html-within-an-echo-error-undexpected/ 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>"; Link to comment https://forums.phpfreaks.com/topic/58226-solved-html-within-an-echo-error-undexpected/#findComment-288709 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.