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.

3 年之前
1234567891011121314
  1. <?php
  2. require_once './Config2.php';
  3. require_once './class.db.inc';
  4. require_once './disney.inc';
  5. //DB
  6. $objDbh = new Db;
  7. $objDbh->setAccount(MYSQL_HOST, MYSQL_USER, MYSQL_PASSWORD, MYSQL_DB);
  8. $objDisney = new DbDisney($objDbh);
  9. //$objDisney->getOrderArray($_GET['order_id']);
  10. $orderArray=$objDisney->getUnpaidOrder($_GET['order_id']);
  11. echo json_encode($orderArray);
  12. ?>