01-09-2008, 07:18 PM
|
#4 (permalink)
|
|
The Contributor
Join Date: Jan 2008
Location: Maine, USA
Posts: 92
Thanks: 2
|
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>";
}
?>
|
|
|
|