PHP Classes

File: examples/example1_connect.php

Recommend this page to a friend!
  Classes of Naveed ur Rehman   PHP Megaupload.com Class   examples/example1_connect.php   Download  
File: examples/example1_connect.php
Role: Example script
Content type: text/plain
Description: To initiate class and validate credentails
Class: PHP Megaupload.com Class
Manage files and folders megaupload.com accounts
Author: By
Last change:
Date: 12 years ago
Size: 1,438 bytes
 

Contents

Class file image Download
<?php
/******************************************************************************
                     HOW TO USE "PHP MEGAUPLOAD.COM CLASS"
 ******************************************************************************
 Example #1: To initiate class and validate credentails
 ******************************************************************************
       Author: Naveed-ur-Rehman
       Email: naveed@naveedurrehman.com,
                   naveed.coder@gmail.com,
                   naveed.ur.rehman@hotmail.com
       Website: http://www.naveedurrehman.com/
 ******************************************************************************
*/

require_once('../class/megaupload.class.php'); //php megaupload.com class file
require_once('credentials.php'); //Your signing in credentails of megaupload.com account

$megaupload = new megaupload_class(); //Initializing the class

$megaupload->username=$username; //Setting credentails (loaded from credentails.php)
$megaupload->password=$password;

$isconnect = $megaupload->connect(); //Return: 0=trouble, 1=validated and connected

if($isconnect==1)
{
 echo
"Credentials are verified and you are connected to megaupload.com successfully!";
}
else
{
 echo
"Error occured while connecting to megaupload.com. May be username and/or password supplied is invalid.";
}

$megaupload->disconnect(); //Disconnect to release everything

?>