Jump to content

mysql error help - You have an error in your SQL syntax...


MDanz

Recommended Posts

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '-course WHERE GRADE BETWEEN 0 AND 9' at line 1

 

class Grade {


public function results($grade)
	{

	$beginning = $grade-9;


$query = mysql_query("SELECT * FROM student-course WHERE GRADE BETWEEN $beginning AND $grade") or die(mysql_error());

			while($row = mysql_fetch_assoc($query)) {

			$sid = $row['SID'];
			$cid = $row['CID'];

			echo "<li>$sid-$cid</li>";

			}
	}
}

?>

 

why am i getting this error?

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.