Surprise! We've been running on hardware provided by BuyVM for a few months and wanted to show them a little appreciation.
Running a paste site comes with unique challenges, ones that aren't always obvious and hard to control. As such, BuyVM offered us a home where we could worry less about the hosting side of things and focus on maintaining a clean and useful service! Go check them out and show them some love!
Description: help3
Submitted on May 24, 2014 at 11:20 PM

Section 1 (PHP)

<?php

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://www.zwinky.com/zwinky-world/Checkout.jhtml");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_TIMEOUT, 5);
curl_setopt($ch, CURLOPT_USERAGENT, "MozillaXYZ/1.0");
//items Array
$data = array(
    'storeId'	=> '923',
    'items'		=> '{id:20102192,species:stud,at:keepsake}',
    'pType'		=> '0'
);
$cookies = array(
//Purchase cookie Goes here
	'anx'		=> ''
);

curl_setopt ($ch, CURLOPT_COOKIE,
//DIRTYCOOKIES GOES HERE 
""
 

curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
$output = curl_exec($ch);
curl_close($ch);
$xml = simplexml_load_string($output);
print_r($xml,1);
echo("done\n");
echo($output);
?>