Hi, what I would do was take the image url after it uploads, I think it was this $imgurl,
Put that in a hidden textbox, so try this inside of the form element
PHP Code:
<input type="hidden" name="imagesource" value="<?php echo $imgurl; ?>" />
and on the next page, try putting something to catch the string
PHP Code:
$test = $_POST["imagesource"];
and on the second page put something like
PHP Code:
<img src="<?php echo $test ?>" />
Hope this helps!
-Dillon
Last edited by Dillon; 03-02-2010 at 02:04 PM..
|