The internet offers amazing opportunities to reach new customers, open up new markets and grow your business cost-effectively. Australian Website Solutions leads the way in affordable eCommerce solutions.
Features: Unlimited products
Accounts with order details
Search Engine Friendly
Overview
Do you want to sell online with a professional Enterprise-grade store? Australian Website Solutions caters for all levels of development and web design skills, for businesses serious about eCommerce. We recommend you use X-Cart, the world’s leading shopping cart software for developing an eCommerce 'Enterprise Store'.
Our Enterprise Store solutions includes quality web hosting plan as well as around the clock technical support from X-Cart and Australian Website Solutions.
We are one of the only Australian companies that can offer you a complete service from eCommerce Hosting, Payment Gateway and Shopping Cart Software. Don't delay get started today.
//BEGIN JEM CODE
/*
|----------------------------------------------------------
| This code can be copied onto any php web page on your site
| and it will showcase all the JEM themes dynamically. users
| can view the themes and purchase them directly on your site
| ---------------------------------------------------------
*/
$user = 'shanleyh6z341';
$key = '';
$pw = '';
$url = 'http://www.mellahosting.com/themes-jem.php'; //change this to the full URL where you will showcase the themes
//GENERATE LICENSE ARRAY
$generate = array(
'user' => $user,
'key' => $key,
'pw' => $pw,
'cmd' => 'get_themes',
'themes_url' => $url,
'offset' => empty($_GET['offset']) ? '' : $_GET['offset'],
'sort_column' => empty($_GET['sort_column']) ? '' : $_GET['sort_column'],
'sort_order' => empty($_GET['sort_order']) ? '' : $_GET['sort_order'],
'products_per_page' => '8',
);
$fields='';
foreach( $generate as $key => $value ) $fields .= "$key=" . urlencode( $value ) . "&";
$ch = curl_init('http://www.jrox.com/resellers/tools');
curl_setopt($ch, CURLOPT_HEADER, 0); // set to 0 to eliminate header info from response
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // Returns response data instead of TRUE(1)
curl_setopt($ch, CURLOPT_POSTFIELDS, rtrim( $fields, "& " )); // use HTTP POST to send form data
$resp = curl_exec($ch); //execute post and get results
curl_close ($ch);
echo $resp;
//END JEM CODE