Alternate Purchase Methods

You may also purchase our software products online trusted resellers, RegSoft and RegNow. Please have your credit card ready and click one of the links below. Please note the name of the product you wish to purchase.

This is recommended if you experience difficulties ordering directly through us or you would just like to use another method. 
altdigitalurl ) && strlen( $objProduct->altcdurl ) ) { // get html $strHTML = pwiHTMLGet( "PURCHASEROWBOTH" ); // get product info $resProductInfo = mysql_query( "SELECT * FROM products WHERE productid='$objProduct->prdiddigital'" ); // get object $objProductInfo = mysql_fetch_object( $resProductInfo ); // replace data with items $strHTML = str_replace( "[DIGITALPRICE]", "$" . $objProductInfo->price, $strHTML ); // create add digital url $strHTML = str_replace( "[ADDDIGITAL]", $objProduct->altdigitalurl, $strHTML ); // get product info $resProductInfo = mysql_query( "SELECT * FROM products WHERE productid='$objProduct->prdidcd'" ); // get object $objProductInfo = mysql_fetch_object( $resProductInfo ); // replace data with items $strHTML = str_replace( "[CDPRICE]", "$" . $objProductInfo->price, $strHTML ); // create add digital url $strHTML = str_replace( "[ADDCD]", $objProduct->altcdurl, $strHTML ); } else { // get html $strHTML = pwiHTMLGet( "PURCHASEROWDIGITALONLY" ); // get product info $resProductInfo = mysql_query( "SELECT * FROM products WHERE productid='$objProduct->prdiddigital'" ); // get object $objProductInfo = mysql_fetch_object( $resProductInfo ); // replace data with items $strHTML = str_replace( "[DIGITALPRICE]", "$" . $objProductInfo->price, $strHTML ); $strHTML = str_replace( "[CDPRICE]", " ", $strHTML ); // create add digital url $strHTML = str_replace( "[ADDDIGITAL]", $objProduct->altdigitalurl, $strHTML ); } // replace data with items $strHTML = str_replace( "[TITLE]", $objProduct->title, $strHTML ); $strHTML = str_replace( "[DESCRIPTION]", $objProduct->description, $strHTML ); // replace button to buy now $strHTML = str_replace( "BTNAddToCart.gif", "BTNBuyNowAlt.gif", $strHTML ); // echo out row echo $strHTML; // blank row echo pwiHTMLGet( "PURCHASEROWBLANK" ); } } // end table echo pwiHTMLGet( "PURCHASETABLEEND" ); ?>