View Single Post
Old Mar 23rd, 2006, 3:43 PM   #23
DaWei
Resident Grouch
 
DaWei's Avatar
 
Join Date: Jun 2005
Posts: 6,453
Rep Power: 10 DaWei is on a distinguished road
popWin = open ( "POPpagePOPTEMP6.php?image=" + target, "popWindow", specs);
Note that, as usual, I show for PHP.
Then, in "POPpagePOPTEMP6.php"
<?php
...
if ($_GET ['image']) $image = $_GET ['image'];
...
?>
<html>
...
<img src="<?php echo $image;?>"/>
...
</html>
or whatever all you want in the image tag.

You have a lot of studying to do and things to catch up on if you're going to produce these things professionally.
__________________
Abstraction doesn't make it impossible to write bad code; it makes it possible to write superior code.
Contributor's Corner: Grumpy on C++ Exceptions DaWei on Pointers
DaWei is offline   Reply With Quote