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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.