Det fungerar inte att skicka med variabeln $show_image till popup-fönstret. Hur ska man göra? Min kod:
<a href=# onclick=\"window.open('popup.php?image=$show_image','popup','scrollbars=no,resizable=yes,width=$width,height=$height,left=50,top=50');\" title=\"Klicka för att se bilden i rätt proportion och storlek\">
Jag har aldrig haft några problem med att skicka variabler till popup-fönster. Du kanska ska testa nåt sånt här:
<a href=# onclick="window.open('popup.php?image=<?= $show_image ?>','popup','scrollbars=no, resizable=yes,
width=<?= $width ?>, height= <?= $height ?>, left=50,top=50');"
title="Klicka för att se bilden i rätt proportion och storlek">