Have a problem with the following: I want to have a link where a new window opens in a pre defined php-document, and an image with a text belonging to it, will appear, like this:
<the image>
the image text
This is my link which i use to make a popup etc:
<a href="image.php?image=images/image.jpg&text=imagetext" target="image" onclick="window.open(this.href, this.target, '...'); return false;">link</a>
...and the following in the pre-defined document:
<img src="<?php echo($GET["image"]); ?>"><br>
<?php echo($GET["text"]); ?>
What do I do to make the text appear under the image?
what is wrong, or should i make it in another way?