My web page was working fine last week and when I went to work on it again I got this:
Notice: Undefined index: courseID in C:\wamp\www\1.1\lib\coursePage.php.inc on line 7
Notice: Trying to get property of non-object in C:\wamp\www\1.1\lib\coursePage.php.inc on line 10
we have no data
Here is my coursePage.php.inc
<?php
/**
*/
class coursePage extends webPage {
protected function content() {
$courseID = $_GET['courseID'];
$query = "SELECT * FROM courses WHERE courseID=$courseID";
$result = query($query);
if($result->num_rows > 0) {
$temp = $result->fetch_assoc();
}
else {
echo "we have no data";
exit;
}
?>
Any Ideas?