Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 
 

14 rader
445 B

  1. <?php
  2. require_once './Config.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. $sendArray=$objDisney->getUnpaidOrder($_GET['order_id']);
  13. print_r($sendArray);
  14. ?>