> Can I send data via HTTP POST with the header() function? No. Generally speaking, the header function sends *response* headers. HTTP POST data is sent as part of a *request* header. I would recommend using curl to create http requests that contain post data. Regards, John Campbell