Jump to content

Simple Question!


downfall

Recommended Posts

Hi,

At the moment, when my webpage retrives data from the database, the results list themselves side by side, like this:

T-Shirts Posters Calenders

As this is for the navigation, I need them to be listed downwards, like this:

T-Shirts
Posters
Calenders

Can anyone tell me how to do this?

This is my code for the php I'm inserting:

[code]<?


$sql = "SELECT category_id, category_name
        FROM categories
        ORDER BY category_name";
$res = mysql_query($sql) or die(mysql_error());
while (list($id, $cat) = mysql_fetch_row($res)) {
    echo "<a href='details2.php?id=$id'>$cat</a>\n";
}

echo <<<_HTML

$list

_HTML;

?>[/code]
Link to comment
https://forums.phpfreaks.com/topic/23373-simple-question/
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.