[PHP] Execute an invisble URL ?

2001-07-24 Thread mail
Hi I have a little scripting problem with php.I want to execute an extern URL with my php file.But this url must be execute invisible.So how should i make this ? Here is an example. Any User opens sms.php. This file(sms.php) execute an URL like www.xyz.com/scripts/sending.php and put out a

Re: [PHP] Execute an invisble URL ?

2001-07-24 Thread Curts
simply call it using file: ?php file('http://www.xyz.com/scripts/sending.php'); ? [EMAIL PROTECTED] wrote: Hi I have a little scripting problem with php.I want to execute an extern URL with my php file.But this url must be execute invisible.So how should i make this ? Here is an