Guest User

Untitled

a guest
Jul 15th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. <select name="shipmethod" class='shipmethod'>
  2. <option value='FIRST_OVERNIGHT'>FIRST OVERNIGHT : $62.38</option>
  3. <option value='PRIORITY_OVERNIGHT'>PRIORITY OVERNIGHT : $47.45</option>
  4. <option value='STANDARD_OVERNIGHT'>STANDARD OVERNIGHT : $28.42</option>
  5. <option value='FEDEX_2_DAY'>FEDEX 2 DAY : $15.37</option>
  6. <option value='FEDEX_EXPRESS_SAVER'>FEDEX EXPRESS SAVER : $13.76</option>
  7. <option value='FEDEX_GROUND'>FEDEX GROUND : $6.9</option>
  8. </select>
  9.  
  10.  
  11. <script type="text/javascript">
  12. $(document).ready(function()
  13. {
  14. $(".shipmethod").change(
  15. function()
  16. {
  17. $.get("ajax.php", { shipping : $(this).val() });
  18. window.location = "cart.php";
  19. }
  20. );
  21. });
  22. </script>
  23.  
  24. if(isset($_GET['shipping']))
  25. {
  26. $data = mysql_real_escape_string($_GET['shipping']);
  27. $_SESSION['shipping'] = $data;
  28. header("Location: cart.php");
  29. }
Add Comment
Please, Sign In to add comment