I would like to modify my code so when a user uploads an image it appears in the table on my Gallery page. This space in the table once clicked becomes a slideshow.
At the moment I can get the submitted photos to appear but I can't get them into the Jquery Lightbox method that i've applied, which is the slideshow feature.
Anyone know how to fix this ?
<div style="float:Left;">
<table border='2'>
<tr>
<td>
<?php while ($row=mysql_fetch_array($res)){?><img src="<?php echo $row['path']?>" width="300px" height="200px"/> <br> <<<<<<<<<<THIS IS WORKING<<<<<<<<<< <?php }?>
</td>
</tr>
<tr>
<td>
<a href="images/2.jpg"><img src="images/2.jpg" width="300px" height="200px" alt=""/></a>
<<<<<<<<<<THIS IS WORKING<<<<<<<<<< </td>
</tr>
<tr>
<td>
<a href="images/cat.jpg"><img src="<?php echo $row['path']?>" width="300px" height="200px" alt=""/></a> <<<<<<<<<<THIS IS THE CODE NOT WORKING<<<<<<<<<<
</td>
</tr>
</table>


