PHP|Débutant :: Forums

Advertisement

Besoin d'aide ? N'hésitez pas, mais respectez les règles

Vous n'êtes pas identifié(e).

#1 Forum Général PHP » Compter des fais de port si le montant global ne depasse pas X€ » 16-04-2013 16:20:01

arnaud321
Réponses : 1

Bonjour,

Je n'arrive pas a compter qu'une fois les frais de port  si j'ai 1,2,3... produits il ajoute les frais autant de fois que j'ai de produits.Idem si le montant ne dépasse pas 20€.

// Start PayPal Checkout Button
$pp_checkout_btn .= '<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_cart">

<input type="hidden" name="upload" value="1">
<input type="hidden" name="business" value="xxxxxx">';
// Start the For Each loop
$i = 0;
foreach ($_SESSION["cart_array"] as $each_item) {
$item_id = $each_item['item_id'];
$sql = mysql_query("SELECT * FROM products WHERE id='$item_id' LIMIT 1");
while ($row = mysql_fetch_array($sql)) {
$product_name = $row["product_name"];
$price = $row["price"];
$details = $row["details"];
}
$pricetotal = $price * $each_item['quantity'];

$shippingcost=0.00;
if ($pricetotal <= 20.00){
$shippingcost= 2.00;
}

else{
$shippingcost=$shippingcost;
}
//$shippingcost=$shippingcost;
$cartTotal = $pricetotal + $cartTotal + $shippingcost;

setlocale(LC_MONETARY, "fr_FR");
$pricetotal = money_format("%10.2n", $pricetotal);
// Dynamic Checkout Btn Assembly
$x = $i + 1;
$pp_checkout_btn .= '<input type="hidden" name="item_name_' . $x . '" value="' . $product_name . '">
<input type="hidden" name="amount_' . $x . '" value="' . $price . '">
<input type="hidden" name="shipping_' . $x . '" value="'.$shippingcost.'">
<INPUT TYPE="hidden” name=”charset" value="utf-8">
<input type="hidden" name="on0_' . $x . '" value="' . $each_item['size'] . '">
<input type="hidden" name="on1_' . $x . '" value="' . $each_item['dosage'] . '">
<input type="hidden" name="on2_' . $x . '" value="' . $each_item['couleurs'] . '">
<input type="hidden" name="quantity_' . $x . '" value="' . $each_item['quantity'] . '"> ';
// Create the product array variable
$product_id_array .= "$item_id-".$each_item['quantity'].$each_item['size'].$each_item['dosage'].$each_item['couleurs'].",";

// Dynamic table row assembly

Si quelqu'un peu venir à mon aide ?

Arnaud

#2 Forum Général PHP » afficher une image ou pas en php » 28-01-2013 21:33:47

arnaud321
Réponses : 1

Bonsoir,

Je souhaiterais afficher une image ou pas si elle est dans mon répertoire ou non avec if et else mais cela ne fonctionne pas si qu'un peu venir en mon aide

<?php
$a ="inventory_images/$id-3.jpg";

if($a = TRUE){
echo " inventory_images/$id-3.jpg";
}else{
echo " ";
}
?>

Pied de page des forums

Propulsé par FluxBB