09-11-2008, 10:33 PM
|
#3 (permalink)
|
|
The Addict
Join Date: Jan 2008
Location: los angeles
Posts: 309
Thanks: 44
|
Quote:
Originally Posted by ETbyrne
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
|
|
|
|