Login   Register  
PHP Classes
elePHPant
Icontem

File: examples/example6_copy.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Naveed ur Rehman  >  PHP Megaupload.com Class  >  examples/example6_copy.php  >  Download  
File: examples/example6_copy.php
Role: Example script
Content type: text/plain
Description: Copy files to root or some other folder
Class: PHP Megaupload.com Class
Manage files and folders megaupload.com accounts
Author: By
Last change:
Date: 2011-07-10 15:04
Size: 1,780 bytes
 

Contents

Class file image Download
<?php
/******************************************************************************
                     HOW TO USE "PHP MEGAUPLOAD.COM CLASS"
 ******************************************************************************
 Example #6: Copy files to root or some other folder
 ******************************************************************************
       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!<br/>";

 
//Note: See example2_refreshlist.php for getting file and folder IDs

 
$fileids  = array(            //You can add more file ids in this array
        
"NMUSW628",
        );    

 
$tofolder "UQEUOPUN";        //You can mentioned just one folder

 
$issuccess $megaupload->copy($fileids,$tofolder);

 if(
$issuccess){echo "Success!";}else{echo "Error!";}
}
else
{
 echo 
"Error occured while connecting to megaupload.com. May be username and/or password supplied is invalid.";
}

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

?>