A quick select using:
SELECT name,email FROM `D_User` WHERE `email` NOT LIKE '%@%.%'
... and I had all the bad email addresses.
Ramblings from University IT... VMWare, NetApp, Powershell,Active Directory, Exchange and Scripting.
SELECT name,email FROM `D_User` WHERE `email` NOT LIKE '%@%.%'
-------------------------------------------------------
$key = 'Wpkdo4dlsorlf03l94kd';
$merchant_id = '1180294430430239';
$cart = new gCart($merchant_id,$key);
$cart->addItem('My Product title', 'My Product description, '1', '12.99');
$xml = $cart->getCart();
$hmac = CalcHmacSha1($xml,$key);
$cartxml = base64_encode($xml);
?>
<form method="POST"
action="https://sandbox.google.com/checkout
/cws/v2/Merchant/
<?php echo $merchant_id; ?>/checkoutForm">
<input type="hidden" name="cart"
value="<?php echo $cartxml; ?>">
<input type="hidden" name="signature"
value="<?php echo $hmac; ?>">
<input type="image" name="Google Checkout"
alt="Fast checkout through Google"
src="http://sandbox.google.com/checkout/buttons/checkout.gif?merchant_id=
<?php echo $merchant_id; ?>
&w=180&h=46&style=white&variant=text&loc=en_US" height="46"
width="180"> </form>
-------------------------------------------------------