Posted by Stephen Kay on 03/22/06 00:26
in article 4eu0229tjmj90e85aena9267psh1p1l0b4@4ax.com, Geoff Berrow at
blthecat@ckdog.co.uk wrote on 3/21/06 5:10 PM:
>> Now that I have the URL string (inside my php function), how do I call that
>> URL and get that page to open up in a window?
>
> I /think/ you'd probably have to use PHP to output some Javascript to do
> that.
Thanks for the reply.
I've since discovered curl for at least getting the page to display:
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://www.eample.com");
curl_exec ($ch);
--
Stephen Kay
Karma-Lab sk@karma-lab.NOSPAM.com
^^^^^^^
[Back to original message]
|