View Single Post
Old 01-09-2008, 07:18 PM   #4 (permalink)
buggabill
The Contributor
 
buggabill's Avatar
 
Join Date: Jan 2008
Location: Maine, USA
Posts: 92
Thanks: 2
buggabill is on a distinguished road
Default

I may be wrong...Could it be because group is a reserved word?

Try this maybe:

PHP Code:
<?php
include("config.php");
$get=$_GET['cat'];
$sql="SELECT * FROM `tuto` where `group`='$get' ";
$res mysql_query($sql) or die('Database error: ' mysql_error());
while(
$row=mysql_fetch_array($res)) {
   echo 
"The title is ".$row[title]."<br>";
   echo 
"The resume is ".$row[resume]."<br>";
   echo 
"Written on ".$row[date]."<br><br><br><br>";
}
?>
buggabill is offline  
Reply With Quote