--- Richard Davey <[EMAIL PROTECTED]> wrote:
> b> How can I open this URL automatically ??
>
> PHP itself cannot open a web page, it's a server-side language and
> doesn't have any control over the client like that.
Well, that's not exactly true if the allow_url_fopen directive is enabled.
You can open Web pages just like local files:
$handle = fopen('http://www.example.com/', 'r');
Hope that helps.
Chris
=====
Chris Shiflett - http://shiflett.org/
PHP Security Handbook
Coming mid-2004
HTTP Developer's Handbook
http://httphandbook.org/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php