Jump to content

simple while problem


nvee

Recommended Posts

I get a nasty error with this one ... yet everything looks so simple ... a chocolate to the person who tells me what stupid mistake im making:

 



<?php
							$dbx = mysql_connect("localhost","root","");	
							if(!$dbx) die("The connection to the database could not be made!");
							$db = mysql_select_db($dbname);
							if(!db) die("Cannot connect to database to obtain course values");
							$result = mysql_query("SELECT * FROM course");
								while ($row = mysql_fetch_array($result)) {
								echo "<option value='$row[\"cid\"]'>$row[\"$cname\"]</option>";
								}
								?>

Link to comment
https://forums.phpfreaks.com/topic/179538-simple-while-problem/
Share on other sites

hahaha my bad ... It was a syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING

 

I figured the problem out tho, it was:

 

my echo which was incorrect ... for the record, here is the correct method (or atleast a working one, im sure there will be a smarter person who can help with a better way to put this :)

 

echo "<option value='" . $row["cid"] . "'>" . $row["cname"] . "</option>";

Link to comment
https://forums.phpfreaks.com/topic/179538-simple-while-problem/#findComment-947353
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.