i previously posted about a transfer code from one server to another but i have worked it out. this post is to to with the same code but different matter.
at the top of the code i have the header tag for when it's finished processing. The code below gets variables from a prevous page one of which is the return url after comepletion. the url with $return looks like this "http://theauctionwinne rs.com/resources/templateEdit.ph p?template=0&ID =987768090"
is there anyway i can use this variable with the header tag?
at the top of the code i have the header tag for when it's finished processing. The code below gets variables from a prevous page one of which is the return url after comepletion. the url with $return looks like this "http://theauctionwinne rs.com/resources/templateEdit.ph p?template=0&ID =987768090"
is there anyway i can use this variable with the header tag?
Code:
<?php header ("Location: templateEdit.php"); session_start(); $imgFLDR = $_GET['rand']; $returnURL = $_GET['return']; echo $imgFLDR; echo $returnURL; ?>
Comment