I am currently building a product catalog and I want three pics to come out going across.
How can I do this. Only one image is coming out.
<?PHP
mysql_connect ("localhost", "user", "pass");
mysql_select_db("db");
$result=mysql_query( "select * from table");
// now you can display the results returned
while ($data = mysql_fetch_array($result)) {
$data["image"];
}
?>