Forum Moderators: coopster
I have a table (Linkspage) which stores my links page data:
link_id
website_name
category
url
description
I have only 3 'categories' and would like to perform a query that echos all the links where:
category=category1
category=category2
category=category3
Is this possible with only 1 query or do I just write three different queries?
// Display Links
$dis_category .= "<tr><td> $r['link'] </td></tr>";
}
$dis_category .= "</table>";
?>
remember, there is always a better way of doing things.