";
print "
";
print "| Course Title | Professor | Book Title & Author | Edition |
";
$getthreads="SELECT * from expired order by `course` ASC";
$getthreads2=mysql_query($getthreads) or die("Could n ot get threads");
while($getthreads3=mysql_fetch_array($getthreads2))
{
$getthreads3[course]=strip_tags($getthreads3[course]);
$getthreads3[book]=strip_tags($getthreads3[book]);
$getthreads3[prof]=strip_tags($getthreads3[prof]);
$getthreads3[edition]=strip_tags($getthreads3[edition]);
print "| $getthreads3[course] | $getthreads3[prof] | $getthreads3[book] | $getthreads3[edition] |
";
}
print "
";
?>