Guest User

Untitled

a guest
Jan 19th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.64 KB | None | 0 0
  1. <?php
  2. (isset($_GET["register"]) || isset($_POST["register"]))
  3. $register = isset($_GET["register"]) ? $_GET["register"] : $_POST["register"];
  4. if (isset($_GET["update_details"]) || isset($_POST["update_details"]))
  5. $update_details = isset($_GET["update_details"]) ? $_GET["update_details"] : $_POST["update_details"];
  6. if (isset($_GET["order"]) || isset($_POST["order"]))
  7. $order = isset($_GET["order"]) ? $_GET["order"] : $_POST["order"];
  8. if (isset($_GET["order_without_billing_address"]) || isset($_POST["order_without_billing_address"]))
  9. $order_without_billing_address = isset($_GET["order_without_billing_address"])?
  10. $_GET["order_without_billing_address"]:$_POST["order_without_billing_address"];
  11. if (isset($_GET["check_order"]) || isset($_POST["check_order"]))
  12. $check_order = isset($_GET["check_order"]) ? $_GET["check_order"] : $_POST["check_order"];
  13. if (isset($_GET["proceed_ordering"]) || isset($_POST["proceed_ordering"]))
  14. $proceed_ordering = isset($_GET["proceed_ordering"]) ? $_GET["proceed_ordering"] : $_POST["proceed_ordering"];
  15. if ( isset($_GET["update_customer_info"]) || isset($_POST["update_customer_info"]) )
  16. $update_customer_info = isset($_GET["update_customer_info"]) ? $_GET["update_customer_info"] : $_POST["update_customer_info"];
  17. if ( isset($_GET["show_aux_page"]) || isset($_POST["show_aux_page"]) )
  18. $show_aux_page = isset($_GET["show_aux_page"]) ? $_GET["show_aux_page"] : $_POST["show_aux_page"];
  19. if ( isset($_GET["visit_history"]) || isset($_POST["visit_history"]) )
  20. $visit_history = 1;
  21. if ( isset($_GET["order_history"]) || isset($_POST["order_history"]) )
  22. $order_history = 1;
  23. if ( isset($_GET["address_book"]) || isset($_POST["address_book"]) )
  24. $address_book = 1;
  25. if ( isset($_GET["address_editor"]) || isset($_POST["address_editor"]) )
  26. $address_editor = isset($_GET["address_editor"]) ? $_GET["address_editor"] : $_POST["address_editor"];
  27. if ( isset($_GET["add_new_address"]) || isset($_POST["add_new_address"]) )
  28. $add_new_address = isset($_GET["add_new_address"]) ? $_GET["add_new_address"] : $_POST["add_new_address"];
  29. if ( isset($_GET["contact_info"]) || isset($_POST["contact_info"]) )
  30. $contact_info = isset($_GET["contact_info"]) ? $_GET["contact_info"] : $_POST["contact_info"];
  31. if ( isset($_GET["comparison_products"]) || isset($_POST["comparison_products"]) )
  32. $comparison_products = 1;
  33. if ( isset($_GET["register_authorization"]) || isset($_POST["register_authorization"]) )
  34. $register_authorization = 1;
  35. if ( isset($_GET["page_not_found"]) || isset($_POST["page_not_found"]) )
  36. $page_not_found = 1;
  37. if ( isset($_GET["news"]) || isset($_GET["news"]) )
  38. $news = 1;
  39. if ( isset($_GET["quick_register"]) )
  40. $quick_register = 1;
  41. if ( isset($_GET["order2_shipping_quick"]) )
  42. $order2_shipping_quick = 1;
  43. if ( isset($_GET["order3_billing_quick"]) )
  44. $order3_billing_quick = 1;
  45. if ( isset($_GET["order2_shipping"]) || isset($_POST["order2_shipping"]) )
  46. $order2_shipping = 1;
  47. if ( isset($_GET["order3_billing"]) || isset($_POST["order3_billing"]) )
  48. $order3_billing = 1;
  49. if ( isset($_GET["change_address"]) || isset($_POST["change_address"]) )
  50. $change_address = 1;
  51. if ( isset($_GET["order4_confirmation"]) || isset($_POST["order4_confirmation"]) )
  52. $order4_confirmation = 1;
  53. if ( isset($_GET["order4_confirmation_quick"]) || isset($_POST["order4_confirmation_quick"]) )
  54. $order4_confirmation_quick = 1;
  55. if ( isset($_GET["order_detailed"]) || isset($_POST["order_detailed"]) )
  56. $order_detailed = isset($_GET["order_detailed"])?$_GET["order_detailed"]:$_POST["order_detailed"];
  57. if (!isset($_SESSION["vote_completed"]))
  58.  
  59.  
  60. $_SESSION["vote_completed"] = array();
  61.  
  62. ?>
Add Comment
Please, Sign In to add comment