i try to get order details by order id in my code. i create php file and copy that on a folder in public_html. this is my code :
<?php error_reporting( E_ALL ); require_once "lib/nusoap.php"; require_once "../app/Mage.php"; try { $order = Mage::getModel('sales/order')->load('100000234'); $orderData = $order->getData(); print_r($orderData); } catch (Exception $e) { echo 'Caught exception: ', $e->getMessage(), " "; } ?>
but when i run code it,s show no things to me ! i try to var_dump($order) but it`s show no thing and no error ! can any body help me to get order detail and show it ? thanks