Login   Register  
PHP Classes
elePHPant
Icontem

File: example.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Brad Pineau  >  PHP Pwinty  >  example.php  >  Download  
File: example.php
Role: Example script
Content type: text/plain
Description: An example of typical class usage.
Class: PHP Pwinty
Order photo print services using the Pwinty API
Author: By
Last change:
Date: 2012-06-29 21:14
Size: 997 bytes
 

Contents

Class file image Download
<?
require_once("PHPPwinty.php");
$pwinty = new PHPPwinty();

// create the order
$order $pwinty->createOrder("John Doe""123 Evergreen Terrace""""Beverly Hills""CA""90210""United States""Photos by Picisto");

// add some photos
$photo1 $pwinty->addPhoto($order"4x6""http://www.picisto.com/photos/picisto-20120608100135-925870.jpg""1""ShrinkToFit");
$photo2 $pwinty->addPhoto($order"6x6""http://www.picisto.com/photos/picisto-20120601010631-895061.jpg""4""ShrinkToFit");
$photo3 $pwinty->addPhoto($order"5x7""http://www.picisto.com/photos/picisto-20120626210525-763773.jpg""3""ShrinkToFit");

// add a document
$document $pwinty->addDocument($order"invoice.pdf");

// add a sticker
$document $pwinty->addSticker($order"sticker.jpg");

// view the order, make sure it's all there
$order_details $pwinty->getOrder($order);
print_r($order_details);

// submit the order
$pwinty->updateOrderStatus($order"Submitted");
?>