Jump to content

Specalized MySQL fetch with PHP


GlovesQ

Recommended Posts

I have a table in MySQL looks like this:

 

SiteName  |  SiteAddress  |  Category  |  Description.

 

Currently I'm using this script to print everything in it:

 

$Query = "SELECT * from $TableName";
$Result = mysql_db_query ($DBName, $Query, $Link);

while ($Row = mysql_fetch_array ($Result)) {
if ($Row[category]) {  // Declare section here
	print ("<tr>\n");
	print ("<td><b><a href=\"$Row[website_address]\" target=\"_blank\">$Row[site_name]</a></b></td>\n");
	print ("<td>$Row[description]</td>\n");
	print ("<td>$Row[cust_phone]</td>\n");
	print ("</tr>\n");
 }

mysql_close ($Link);

 

I only want to print the rows that are of a certain category.

 

Example: Print only rows that are Art

or

Print only rows that are Math

 

 

How can i do that?  I tried to use an if statement but I'm too much of a PHP n00b and it still listed all the rows.

Link to comment
https://forums.phpfreaks.com/topic/96502-specalized-mysql-fetch-with-php/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.