Server IP : 127.0.0.2 / Your IP : 18.219.197.162 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/vendor/constantcontact/constantcontact/examples/ |
Upload File : |
<!DOCTYPE HTML> <html> <head> <title>Constant Contact API v2 Upload File Example</title> <link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.min.css" rel="stylesheet"> <link href="styles.css" rel="stylesheet"> </head> <!-- README: Add or update contact example This example flow illustrates how a Constant Contact account owner can upload a file to their Library. In order for this example to function properly, you must have a valid Constant Contact API Key as well as an access token. Both of these can be obtained from http://constantcontact.mashery.com. --> <?php // require the autoloaders require_once '../src/Ctct/autoload.php'; require_once '../vendor/autoload.php'; use Ctct\ConstantContact; // Enter your Constant Contact APIKEY and ACCESS_TOKEN define("APIKEY", "ENTER YOUR API KEY"); define("ACCESS_TOKEN", "ENTER YOUR ACCESS TOKEN"); $cc = new ConstantContact(APIKEY); if ($_FILES) { $fileName = $_POST['file_name']; $description = $_POST['description']; $folderId = $_POST['folder']; $fileLocation = $_FILES['file']['tmp_name']; $uploadStatusId = $cc->libraryService->uploadFile(ACCESS_TOKEN, $fileName, $fileLocation, $description, "MyComputer", $folderId); $fileUploadStatus = $cc->libraryService->getFileUploadStatus(ACCESS_TOKEN, $uploadStatusId); } $folders = array(); $params = array(); $next = null; do { if ($next) { $params = array("next" => $next); } $foldersResult = $cc->libraryService->getLibraryFolders(ACCESS_TOKEN, $params); foreach ($foldersResult->results as $folder) { array_push($folders, $folder); } $next = $foldersResult->next; } while ($next); ?> <body> <div class="well"> <h3>Upload a New Image or PDF</h3> <form class="form-horizontal" name="submitFile" id="submitFile" method="POST" action="uploadFile.php" enctype="multipart/form-data"> <div class="control-group"> <label class="control-label" for="file_name">File Name</label> <div class="controls"> <input type="text" id="file_name" name="file_name" placeholder="File Name"> </div> </div> <div class="control-group"> <label class="control-label" for="file">File</label> <div class="controls"> <input type="file" id="file" name="file" placeholder="Choose File"> </div> </div> <div class="control-group"> <label class="control-label" for="description">Description</label> <div class="controls"> <input type="text" id="description" name="description" placeholder="Description"> </div> </div> <div class="control-group"> <label class="control-label" for="folder">Folder</label> <div class="controls"> <select name="folder"> <option value="0">Images</option> <?php foreach ($folders as $folder) { echo '<option value="' . $folder->id . '">' . $folder->name . '</option>'; } ?> </select> </div> </div> <div class="control-group"> <label class="control-label"> <div class="controls"> <input type="submit" value="Submit" class="btn btn-primary"/> </div> </div> </form> </div> <?php // print the contents of the file upload status to screen if (isset($fileUploadStatus)) { echo '<span class="label label-success">File Uploaded!</span>'; echo '<div class="container alert-success"><pre class="success-pre">'; foreach ($fileUploadStatus as $status) { print_r($status); } echo '</pre></div>'; } ?> </body> </html>