Re: Using Header to post data to another site

2006-08-16 Thread Douglas Sims
It sounds as if you're using the PHP HTTP module. You probably want the HTTP_Client module instead as it has a method for doing POSTs. In general you should use GET for HTTP requests which only solicit information from another server and don't request that server to change anything store

Re: Using Header to post data to another site

2006-08-16 Thread mos
At 09:34 AM 8/16/2006, you wrote: Hi all, I am working on a problem where I need to select data from my own database, and then post it to another website (using the Get) method. After having wasted about 4 days trying http_request, $_Get and whatnot, I stumbled upon the header command. So far,

RE: Using Header to post data to another site

2006-08-16 Thread Peter Lauri
l.com Subject: Using Header to post data to another site Hi all, I am working on a problem where I need to select data from my own database, and then post it to another website (using the Get) method. After having wasted about 4 days trying http_request, $_Get and whatnot, I stumbled upon the he

Using Header to post data to another site

2006-08-16 Thread Dirk Poot
Hi all, I am working on a problem where I need to select data from my own database, and then post it to another website (using the Get) method. After having wasted about 4 days trying http_request, $_Get and whatnot, I stumbled upon the header command. So far, the only way I have been able to

Using Header to post data to another site

2006-08-16 Thread Dirk
Hi all, I am working on a problem where I need to select data from my own database, and then post it to another website using the Get method. After having wasted about 4 days trying http_request, $_Get and whatnot, I stumbled upon the header command. So far, the only way I have been able to ac