Hi,
I'm a newbie with php. I'm maintaining this php application we bought and I need to add a script that invokes an html page located in another server. This html page uses some java code to store the variables being passed on through the url. I've tried the following functions:
header("Location: ".$app_reg_url);
echo("<meta http-equiv = refresh content=15;url=".$app_reg_url.">");
and now I've been told to try get_url from the curl library but I can't find any reference on this function. Is there such function? Also,
is there other functions that will let me launch another script in another server and work in the background?
Thanks,
John