PHP durum ülke için kontrol

0 Cevap

Merhaba kurulumu bir nakliye maliyeti için 2 ülke için kontrol etmelisiniz. (Bu değerler daha önce bir açılan liste ile atanır). Burada çalışmak için görünmüyor benim PHP durum, bu. Ben bir hata yapıyorum eğer birisi sözdizimi ile bana yardım edebilir misiniz?

<?php
for( $y = 0; $y < count( $contentsArray ); $y++ )
{

  $itemArray = explode( ":", $contentsArray[ $y ] );

  $price = number_format( $itemArray[ 2 ] * $itemArray[ 1 ], 2 );
  $subtotal += $price;

  echo "<tr>";
  echo "<td class='item_col'>" . $itemArray[ 0 ] . "</td>";
  echo "<td class='description_col'>" . $itemArray[ 3 ] . "</td>";
  echo "<td class='quantity_col'>" . $itemArray[ 1 ] . "</td>";
  echo "<td class='price_col'>$ " . $price . "</td>";
  echo "</tr>";
}

// calculate the shipping  



if( $subtotal > 500 )
  $shipping = 0.00;

Benim durumum ve böcek eklemek çalışıyorum nerede / / ---- Bu ------ olduğunu

else if ( $country == "Canada" )
  $shipping = 10.00;
else if ( $country == "USA" )
  $shipping = 10.00;

Benim koşulu eklemek için çalışıyorum / / ---- Üstü ------

else $shipping = 15.00;

$shipping = number_format( $shipping, 2 );  




// calculate the tax and total for the cart
$gst = number_format( ( $subtotal + $shipping ) * 0.06, 2 );
$total = $subtotal + $shipping + $gst;

// update the totals in the db
$cartData->totals = $shipping . "|" . $gst . "|" . $total;
$updateSuccess = updateCartTotals( $merchant, $cartData );
?>

</tbody>
</table>
<br />

<div id="invoice_totals">
  <div id="totals">
    $ <?=number_format( $subtotal, 2 )?><br />
    $ <?=number_format( $shipping, 2 )?><br />
    $ <?=number_format( $gst, 2 )?><br />
    <span class="total">$ <?=number_format( $total, 2 )?></span>
  </div>

  <div id="headings">
    <strong>subtotal:</strong><br />
    <strong>shipping:</strong><br />
    <strong>tax:</strong><br />
    <span class="total">total:</span>
  </div>

  <div id="print">
    <a href="#"><img src="images/cart/buttons/print.gif" width="41" height="41" border="0" onmouseover="this.src='images/cart/buttons/print_ov.gif'" onmouseout="this.src='images/cart/buttons/print.gif'" /></a>
  </div>

  <div class="cleaner"></div>

  <div id="back">
    <a href="shipping.html"><img src="images/cart/buttons/back.gif" width="58" height="58" border="0" onmouseover="this.src='images/cart/buttons/back_ov.gif'" onmouseout="this.src='images/cart/buttons/back.gif'" /></a>
  </div>
  <div class="cleaner"></div>
</div>

</div>

<div id="shipping_information">
<p>
  <strong>Shipping to:</strong><br />
  <?=$customerData->firstName . " " . $customerData->lastName?><br />
  <?=$customerData->address?><br />
  <?=$customerData->city . ", " . $customerData->province?><br />
  <?=getCountryName( $customerData->country )?><br />
  <?=$customerData->postalCode?>
</p>

...

0 Cevap