Jump to content

[SOLVED] HTTP/Request


textbox

Recommended Posts

Hello, following on from my posts about cURL...  <here>

 

I have been told by the API developer to use PEAR.

Never used this before but looks like a function within PHP.

 

<?php
require_once "HTTP/Request.php";

$req =& new HTTP_Request("http://heywatch.com/upload");
$req->setBasicAuth("johndoe", "foo");
$req->setMethod(HTTP_REQUEST_METHOD_POST);

$result = $req->addFile("data", "your/video.3gp");
if (PEAR::isError($result)) {
   header("Location: http://yoursite.com/upload?error");
} else {

   $response = $req->sendRequest();

   if (PEAR::isError($response)) {
       header("Location: http://yoursite.com/upload?error");
   } else {
       header("Location: http://yoursite.com/upload?success");
   }
}
?> 

 

This is the code.

However, what needs to go in HHTP/request.php??

 

Is this some sort of set file or connection string?

Any help would be great!

 

Nick

Link to comment
https://forums.phpfreaks.com/topic/50802-solved-httprequest/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.