Jump to content

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

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.