= $Quantity AND `Active` > 0 AND `Item_Type` = 'OE' ORDER BY `Item_Licenses` ASC LIMIT 1 ; "; $results = mysqli_query($dbhi, $query); if ($results) { //echo $query. mysqli_error($dbhi); // echo "NOR = ". mysql_num_rows(); $data = mysqli_fetch_assoc($results); return $data; } else echo $query . mysqli_error($dbhi); } /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// function GetDatacURL(&$arrData) { $submiturl = "https://www.paypal.com/cgi-bin/webscr"; if (is_array($arrData)) //$postdata = jdf_build_query( $arrData);//for fucking godaddy bs $postdata = http_build_query($arrData); //for fucking PHP 5 $ch = curl_init(); /// initialize a cURL session curl_setopt($ch, CURLOPT_URL, $submiturl); //live server curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $postdata); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //Un comment the next line to write the response to the rates and services request to a file. //curl_setopt ($ch, CURLOPT_FILE, $fp); //Check to see if this code is on a windows machine or a unix $filename = "c:\\windows\\system32\\ca-bundle.crt"; if (file_exists($filename)) { curl_setopt($ch, CURLOPT_CAINFO, "c:\windows\system32\ca-bundle.crt"); curl_setopt($ch, CURLOPT_CAPATH, "c:\windows\system32\ca-bundle.crt"); //curl_setopt ($ch, CURL_CA_BUNDLE, "c:\windows\system32\ca-bundle.crt"); } $data = curl_exec($ch); if (curl_errno($ch)) { return curl_error($ch); } else return $data; curl_close($ch); }// //////////////////////////////////////// END function GetDatacURL($submiturl) ////////////////////////////////////////////////////// include("./includes/siteData.php"); include("./includes/dbConnect.php"); session_start(); extract($_POST); /* CREATE TABLE tblSales ( SalesID bigint(20) unsigned NOT NULL auto_increment, Order_No varchar(128) NOT NULL COMMENT 'The order id forwarded to cc handler, unique', Price decimal(12,2) unsigned NOT NULL COMMENT 'Price ', ReferenceNo int(11) NOT NULL, Description varchar(128) NOT NULL, User_ID bigint(20) unsigned NOT NULL COMMENT 'who bought it', Completed tinyint(4) NOT NULL COMMENT 'was it paid', Error varchar(64) default NULL COMMENT 'Why payment was rejected', SalesDate timestamp NOT NULL default CURRENT_TIMESTAMP, IPAddress varchar(64) NOT NULL, Item_ID bigint(20) unsigned NOT NULL, authcode varchar(32) NOT NULL, response_reason varchar(64) NOT NULL, txn_id varchar(64) NOT NULL, CCPayment decimal(12,2) unsigned default NULL COMMENT 'actual payment', PRIMARY KEY (SalesID) ) ENGINE=MyISAM AUTO_INCREMENT=27 DEFAULT CHARSET=latin1 COMMENT='new sales table for software' */ /////////////////////////////////////////////////////////////////////////////////////////////////////// function GetItem($Item_ID) { $query = "SELECT * FROM `tblItems` WHERE `Item_ID` = $Item_ID ; "; $results = mysqli_query($dbhi, $query); if ($results) { $data = mysqli_fetch_assoc($results); return $data; } else echo $query . mysqli_error($dbhi); } /////////////////////////////////////////////////////////////////////////////////////////////////////// function GetPayPalID($Item_ID) { $query = "SELECT `hosted_button_id` AS HBID FROM `tblItems` WHERE `Item_ID` = $Item_ID ; "; $results = mysqli_query($dbhi, $query); if ($results) { $data = mysqli_fetch_assoc($results); extract($data); if ($HBID != "") return $HBID; else return 0; } else echo $query . mysqli_error($dbhi); } //////////////////////////////////////////////////////////////////////////////////////////////////////////// if (isset($SubCompleteOrder) && $User_ID)//processing loop { if (ctype_digit($CCNumber) && ctype_digit($CCMonth) && ctype_digit($CCYear) && ctype_digit($User_ID)) { include("includes/graypay.php"); extract(GetItem($_SESSION['Item_ID'])); $Invoice = $User_ID . "_" . date('YmdHis'); $gw = new gwapi; $gw->setLogin($CC_UN, $CC_PW); // LIVE LOGIN //$gw->setLogin("demo", "password"); // TEST LOGIN $gw->setBilling($CCFName, $CCLName, $CompName, $CCAddress1, $CompAddress2, $CCCity, $states, $CCZip, $CCCountry, $CompAreaCode . $CompPhone, "", $CompEmail, $CompURL); $gw->setOrder($Invoice, $Item_Description, $_SERVER['REMOTE_ADDR']); $r = $gw->doSale($Item_Price, $CCNumber, $CCMonth . $CCYear, $CCCcv); extract($gw->responses); if ($response == 1) { $Completed = 1; $SalesMessage = "Sale Successful: Authorization Code = $authcode"; } else { $Completed = 0; $SalesMessage = "Sale Failed: $responsetext"; } $queryI = "INSERT INTO `tblSales` SET `Order_No` = '$Invoice', `IPAddress`= '" . $_SERVER['REMOTE_ADDR'] . "', `Price` = '$Item_Price', `User_ID` = '$User_ID' , `Item_ID` = '$Item_ID' , `Description` = '$Item_Description' , Completed = '$Completed' , ReferenceNo = '$transactionid' , Error = '$responsetext' , authcode = '$authcode ' ; "; $resultsI = mysqli_query($dbhi, $queryI); if ($resultsI) { $SalesID = mysqli_insert_id($dbhi); } else { //echo $queryI.mysqli_error($dbhi); $SalesMessage .= "
Good Sale but local DB error"; } //Town News /* echo */ $gw->sendReceipt($Completed, $responsetext, $MainEmail); //, jakefree@verizon.net }// end if(ctype_digit($CCNumber) && ctype_digit($CCMonth) && ctype_digit($CCYear) && ctype_digit($User_ID) ) else $SalesMessage = "You have Bad CC Information, check your numbers and expiration date"; } $SiteName = 'Get Trusted Advice'; ?> : Purchase Data and Licenses

Guarantee Inbox Placement - Get Accurate, Deliverable Emails Instantly

 "The Innovative Solutions Award recognizes solutions that are groundbreaking & provide quantifiable business value for end-users."

Julie Langekamp, Information Management Magazine Editor-in-chief

Read More

Microsoft Opted-in Emailing
Lowest Cost & Best Deliverability

Microsoft 365: Only $4.75 per 300,000 using our software!

Purchase Your Targeted Opt-In Email, Phone or Other Data, Software Licenses and Reseller Site Plans Here

You will be forwarded to PayPal's site, so you may have to over-ride your pop-up blocker. Use the Ctrl key when clicking on the final prompt.

  • Data Credits don't expire!

  • One credit for one full record!

  • No extra cost to select many criteria!

  • You can require your search results include executives emails.

  • We'll give you extra records to more than cover any bounces!

Purchase Plans for our Software and Data Packages

( We accept PayPal payments only )

250 Million US Opt-in Email records; 100% Bounced Data Replacement

Let our techies help you set up your software and give you one on one personal training; only $25 per hour*. ( *subject to change without notice).
We will schedule the appointment between you and our Technical Support Staff after we deliver your software license

You must be logged into make a purchase"; include("includes/loginNew.php"); echo "

\n"; } ?>
$Cat_Name ($Cat_Type)

" . stripslashes($Description) . "


Purchase Plans:

    \n"; while ($data = mysqli_fetch_assoc($results)) { extract($data); // echo "
  • \n"; }// end while //echo "
  • 50 Cents for 1 Record TEST ONLY
  • \n"; echo "\n
\n


"; //end of data only section } elseif (mysqli_errno($dbhi)) echo "$query " . mysqli_error($dbhi); } } elseif (mysqli_errno($dbhi)) echo "$queryCL " . mysqli_error($dbhi); ///////////////////////////////////////////////////////////////////////////////////////////////////////// $d = 0; $query = "SELECT * FROM `tblItems` WHERE `Active` = 1 AND subscription = 1 ORDER BY `Item_Price`, `Item_Records` ASC ; "; $results = mysqli_query($dbhi, $query); if ($results && mysqli_num_rows($results)) { echo '
'; echo "
"; while ($data = mysqli_fetch_assoc($results)) { extract($data); echo "
  •  
  • \n"; } // end while echo "
    "; // end of collapse and card-body divs } // end if statement elseif (mysqli_errno($dbhi)) echo "$query " . mysqli_error($dbhi); ?>


    '; } else { echo "

    You must be logged into make a purchase

    "; // include("includes/login.php"); } ?>

    All One Time License Fees Include Updates

    When purchasing the Internet Protocol (IP) address of your computer will be seen and if the IP address is not one that matches the postal mailing location provided on the credit card being used, no license or software download will be issued. Additionally all orders need a phone number in the geographic area that corresponds to the mailing address being used on the credit card as security will contact you to verify that you are placing the order. Users of stolen credit cards should also understand that the software unlock codes can be remotely disabled by us. Additionally if there is an attempt to purchase with a stolen credit card the IP address of the computer used will be turned over to authorities
    $hosted_button_id"; if ($Item_Price > 0) { $_SESSION['Item_ID'] = $Items; $GoAhead = 1; $querySales = "INSERT INTO `tblSales` SET `Price` = $Item_Price, User_ID = $User_ID, `Item_ID` = $Item_ID, `IPAddress` = '$_SERVER[REMOTE_ADDR]' , `Description` = '$Item_Description' ; "; $resutlsSales = mysqli_query($dbhi, $querySales); if (!$resutlsSales) echo $querySales . mysqli_error($dbhi); else { $SalesID = mysqli_insert_id($dbhi); $_SESSION['SalesID'] = $SalesID; //echo "

    id = $SalesID | ".$_SESSION['SalesID']."

    "; } } } } elseif (isset($subOutlookEnhanced)) // 1st click { $selQuantity = (intval($selQuantity)); $_SESSION['Item_ID'] = ""; if ($selQuantity > 0) { extract(GetItemOE($selQuantity)); // print_r(GetItemOE($selQuantity)); if ($Item_Price > 0) { $GoAhead = 1; $Price = $Item_Price * $selQuantity; $querySales = "INSERT INTO `tblSales` SET `Price` = $Price, `Quantity` = $selQuantity, User_ID = $User_ID, `Item_ID` = $Item_ID, `IPAddress` = '$_SERVER[REMOTE_ADDR]' , `Description` = '$Item_Description' ; "; $resutlsSales = mysqli_query($dbhi, $querySales); $Item_Description = "$selQuantity Outlook Enhanced Licenses at \$$Item_Price a piece"; if (!$resutlsSales) echo $querySales . mysqli_error($dbhi); else { $SalesID = mysqli_insert_id($dbhi); $_SESSION['SalesID'] = $SalesID; //echo "

    id = $SalesID | ".$_SESSION['SalesID']."

    "; $Item_Price = $Price; } } } } //elseif(isset($subOutlookEnhanced)) // 1st click }// if userid ?>