[HELP] php/mysql table

Hey, how could I make table like

or just with one column, without the letter columns…

Everything should be loaded from MySQL.

Right now got something like this:

[code]



<?php
$result = mysql_query(“SELECT * FROM lentele”);
?>
<?php while($row = mysql_fetch_array($result)): ?>

<?php endwhile; ?>

<?php echo $row['url'];?>(<?php echo $row['domain'];?>)

<?php echo $row['added'];?>
[/code]

I assume trying to get only 4 columns? Have a look at http://www.weberdev.com/get_example.php3?ExampleID=3994, its not the cleanest code i’ve seen for this type of thing, but it’ll do the job.

Sponsor our Newsletter | Privacy Policy | Terms of Service