I have little cycle. This take some image to the screen. Every image have an id which i stored in $id variable.
When user click on an image they get a popup window. Now im use query string. When user click, get a popup with id from query string.
But this is not a good way, 'coz if user reload the page, with the query string..they get the popup every time.
I need the $id when show the popup. How can i do this without querystring? How can i check if click on image and which image clicked on?
for j=1 .....{
...
..
for i=1....... {
$id=array[j,i];
echo "<a href=test.php><img style='z-index:$z; position:absolute; left: $lf; top: $tf;' src='images/$src' width='$width' height='$heigth' title='$title' /></a>";
}
}