You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

36 lines
889 B

  1. <?php
  2. /*
  3. Author:XM
  4. Compeny:Spiders Travel
  5. */
  6. define("MYSQL_HOST", "139.196.199.238");
  7. //define("MYSQL_HOST", "180.168.4.58");
  8. define("MYSQL_USER", "root");
  9. define("MYSQL_PASSWORD", "123456");
  10. define("MYSQL_DB", "disney");
  11. define("MYSQL_PORT", 3306);
  12. //define("MYSQL_PORT", 8090);
  13. $_ary_pay_type = array(
  14. "1" => "微信支付"
  15. );
  16. $_ary_tickets_type = array(
  17. "1" => "普通票",
  18. "2" => "儿童票"
  19. );
  20. $_ary_goods_type = array(
  21. "1" => "往返接驳票",
  22. "2" => "迪尼斯门票",
  23. "3" => "狮子王演出票",
  24. "4" => "千岛湖至上海",
  25. "5" => "上海至千岛湖"
  26. );
  27. $_ary_goods_price = array( "15" => 30 );
  28. $_ary_ticket_price1 = array( "0" => 50);
  29. $_ary_ticket_price2 = array( "0" => 50 );
  30. $user_agent = isset($_SERVER["HTTP_USER_AGENT"]) ? $_SERVER["HTTP_USER_AGENT"] : "";
  31. $page_name = basename($_SERVER['PHP_SELF']);
  32. $ip = $_SERVER["REMOTE_ADDR"];