Advertisement
Guest User

Untitled

a guest
Aug 18th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. <?php
  2. foreach( $deliveryOptions as $description => $cost) {
  3.  
  4. $location = $locationOptions[$description];
  5.  
  6. //Show UK Delivery Options
  7. if($browsecountry=='GB') {
  8.  
  9. if($location=='UK') { ?>
  10. <option <?php if( $_SESSION['delivery'] == $description ) { echo "selected=\"selected\""; } ?> value="<?php echo $description; ?>"><?php echo $description; ?></option>
  11. <?php
  12.  
  13. } }
  14.  
  15. //Show European Delivery Options
  16. elseif($browsecountry=='NL') {
  17.  
  18.  
  19.  
  20. if($location=='Europe') { ?>
  21. <option <?php if( $_SESSION['delivery'] == $description ) { echo "selected=\"selected\""; } ?> value="<?php echo $description; ?>"><?php echo $description; ?></option>
  22. <?php
  23.  
  24. } }
  25.  
  26. //Show Delivery Options for the World
  27.  
  28. else {
  29. if($location=='Rest of the World') {?>
  30. <option <?php if( $_SESSION['delivery'] == $description ) { echo "selected=\"selected\""; } ?> value="<?php echo $description; ?>"><?php echo $description; ?></option>
  31. <?php } }
  32. }
  33. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement