View Single Post
Old 09-11-2008, 10:33 PM   #3 (permalink)
sarmenhb
The Addict
 
sarmenhb's Avatar
 
Join Date: Jan 2008
Location: los angeles
Posts: 309
Thanks: 44
sarmenhb is on a distinguished road
Default

Quote:
Originally Posted by ETbyrne View Post
What's your code? Are you using short PHP tags?
no im doing long tag <?php

ok here is my code

this is the left navigation categories so when one of them is clicked the page will redirect to it.
Code:
<?php
#======================================
#  DISPLAY CATEGORIES
#======================================

$query = mysql_query("select category from tbl_category where visible = 'yes'") or die(mysql_error());
while($row = mysql_fetch_assoc($query)) {


echo "<a href=\"index.php?category=d\">{$row['category']}</a><br>";
}

#======================================
?>
once redirected it will show this

Code:
<?php
#======================================
#  Listing
#======================================

echo "Category:".$category;

#======================================
?>
__________________
no signature set
sarmenhb is offline  
Reply With Quote