Hi i had a database table which stores images in columns.
ie
idno + image name + name
1 | lal.jpg | raj
2 | lal2.jpg | raj2
3 | lal3.jpg | raj3 .....
Now I need to show this images and these names in a page as 3 columns....
I wrote the code as..
$result=mysql_query("SELECT * from table where approved='yes'").....
while($show=mysql_fetch_array($result)) {
I need to show the result as 3 columns like 3 images in a row...
Please Help me....
Thanks in advance
Rajeesh