hello im trying to display something from my data base here is the code <?php $categories = "Gear Reviews"; // setup SQL statement $SQL = " SELECT * FROM Gear Reviews "; $SQL = $SQL . " WHERE categories = '$categories' "; // execute SQL statement $retid = mysql_db_query($db, $SQL, $cid); // check for errors if (!$retid) { echo( mysql_error()); } else { // display results echo ("<p><dt><b>$categories</b><br>\n"); while ($row = mysql_fetch_array($retid)) { $url = $row["url"]; $name = $row["name"]; $description = $row["description"] echo ("<p><a href='$url'>$name</a></p>\n"); } echo ("</dt></p>"); } ?> PHP: