![]() |
Available news archives:
comp.lang.tcl
-
comp.lang.python
-
comp.security.firewalls
-
sci.crypt -
comp.lang.php -
comp.lang.javascript
|
|
comp.lang.php archiveProblems outputting to a 3 column table in order to crate an image gallery
From: ste <0@0.com>
Date: Sat Apr 29 2006 - 03:12:22 CEST
Hi there,
I'm trying to query a MySQL database (containing image data) and to output
I can query and output the data as a single column table, but I'm having
I would appreciate it if someone could take a look at the code below and
The code below puts an image on each row, instead of filling up 3 columns on
I open this gallery by going to
Thank you for any help,
Ste
<?php
$connection = mysql_connect($host,$user,$password) or die ("couldn't connect
$title = "Gallery";
echo "<h2>$title</h2>";
while ($row = mysql_fetch_array($result))
{
echo "</tr>";
|