[PHP-DEV] When my PHP file opens, I want it to automatically submit

2002-11-04 Thread Luke
Hello, On my website, I have a php form which submits the global Ip address of the computer its on to a specific email address, I want it to automatically click the submit button on the website without questions, it already has an email address specified in it, but you have to open the document

Re: [PHP-DEV] When my PHP file opens, I want it to automatically submit

2002-11-04 Thread Wei Weng
Basically, you need to do a HTTP post to the URL where it had that submit button and wrap the global IP address of computer along with other information you want to pass to that URL in the post data area. You can search the PHP-General mailing list archive, I asked how to submit HTTP post