View Single Post
Old 03-14-2009, 05:49 PM   #8 (permalink)
allworknoplay
The Gregarious
 
allworknoplay's Avatar
 
Join Date: Feb 2009
Location: New York
Posts: 645
Thanks: 64
allworknoplay is on a distinguished road
Default

I think I'm close, I found something like this with CURL but I'm getting an error...

Code:
<?php
 $ch = curl_init('index.html');
 curl_setopt ($ch, CURLOPT_POST, 1);
 curl_setopt ($ch, CURLOPT_POSTFIELDS, "email_address=email&password=password");
 curl_exec ($ch);
 curl_close ($ch);
?>

Fatal error: Call to undefined function: curl_init() in /usr/local/apache/test.html on line 2

I know that I have curl installed so I'll have to dig into this error further....
allworknoplay is offline  
Reply With Quote