I'm generating several images using a php+gd script.
My problem is that I need to have a several files with the same script to have a diferent image, as the code bellow shows:
<table>
<tr>
<td>
<IMG SRC="generateImage1.php">
</td>
<td>
<IMG SRC="generateImage2.php">
</td>
<td>
<IMG SRC="generateImage3.php">
</td>
<td>
<IMG SRC="generateImage4.php">
</td>
</tr>
</table>
If I use the same script name every time, the image shown is always the same.
Anyone has a better idea how to do this?