Advertisement
Guest User

Untitled

a guest
Jun 19th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. $result = mysql_query("SELECT * FROM coupon WHERE Email_Address='$address'");
  2.  
  3.     if (mysql_num_rows($result)==0){
  4.         echo "ADDING TO DATABASE: " . $address;
  5.         mysql_query("INSERT IN Coupon (Date_Issued, Email_Address, Coupon_Code, Coupon_Expiry) VALUES ('date(Y-m-d)', '$address', '$couponcode', LAST_DAY('date(Y-m-d)');)");
  6.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement