Jump to content

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

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.