sql >> Database teknologi >  >> RDS >> Mysql

PayPal IPN opdaterer ikke MySQL-database

Paypal IPN returneret status har første tegn med stort bogstav.

Completed er ikke lig med completed . Prøv dette

curl_close($ch);

if (strcmp ($res, "VERIFIED") == 0) {

$token = $_POST['invoice'];
$item= $_POST['invoice'];

$conn=new PDO("mysql:host=SERVER;dbname=MYDATABASE","NAME","PASS");
if ($_POST['payment_status'] == 'Completed')
{
   $sql="UPDATE `tbl_products` SET `id_status` = 3 WHERE `id_product`=:idproduct";
   $stmt=$conn->prepare($sql);
   $stmt->bindParam(':idproduct',$item);
   $stmt->execute();
}
if ($_POST['payment_status'] == 'Pending')
{
    $sql="UPDATE `tbl_products` SET `id_status` = 2 WHERE `id_product`=:idproduct";
    $stmt=$conn->prepare($sql);
    $stmt->bindValue(':idproduct',$item);
    $stmt->execute();
}
foreach ($_POST as $key => $value)
{
    $emailtext .= $key . " = " .$value ."\n\n";
}
mail("MYEMAIL", "Live-VALID IPN", $emailtext . "\n\n" . $req);
}
else if (strcmp ($res, "INVALID") == 0)
{
// log for manual investigation
foreach ($_POST as $key => $value)
{
    $emailtext .= $key . " = " .$value ."\n\n";
}
mail("MYEMAIL", "Live-INVALID IPN", $emailtext . "\n\n" . $req);
}

Det er bedre at gemme status i en variabel og bruge php strtolower funktion for at gøre dem til små bogstaver.

$paypalStatus = strtolower($_POST['payment_status']);

Udfør kontrollen sådan her

if($paypalStatus == 'pending')



  1. Introduktion til Slowly Changing Dimensions (SCD)

  2. Hvordan man kortlægger en streng til DB-sekvens i Hibernate

  3. Mistet forbindelse til MySQL-server under forespørgsel

  4. [MySQL]:Hvad er indsamlingsmetode?