ok .. i've search the PHP manual and this site, i still can't find the command to just open a url.
I am building a the url from an html form. I have successfully built the url, so how do i open said url?
I've tried fopen() but all i get is a blank page.
i also tried include () which worked, sorta. except when it opens it opens through the script.
i.e. http://www.wowguilddkp.com/dkpportal/dkpportal.php?dkpname=StonedAvengers&Submit=Submit
i need it to open just the url
here's what i have
<?php
//First set the option for the back end of the url
$urlback = 'wowguilddkp.com';
//now process the tag from the form
$urlfront = $_GET ['dkpname'];
//now piece it together
//test the output
//echo "the link made by this script is http://$urlfront.$urlback";
// now that we are generating the correct url information, let's open that url.
fopen ("http://$urlfront.$urlback","r");
?>
can someone tell me the best way just open the URL in the same window?
thanks in advance.
chris