Forum Moderators: coopster
while($row=mysql_fetch_array($sql_result)){
$slno[] = $row["SlNo"];
$image_no[] = $row["Image No"];
$title[] = $row["Title"];
$category[] = $row["Category"];
$sub_category[] = $row["Sub-Category"];
$description[] = $row["Description"];
$size[] = $row["Size"];
}
wat i wanna do is generate a html table with 2 columns and xx amount of rows (horizontaly like image gallery) and that entire html tags will be again stored in an array.
for eg.
<table>
<tr>
<td>SL No 1</td>
<td>SL No 2</td>
</tr>
<tr>
<td>Image No 1</td>
<td>Image No 2</td>
</tr>
</table> etc... till == x
and these entire html tags will be again store in an array...
Value of xx number of rows will be passed via form.
hope u guys understood.
thnx