Your IP : 216.73.216.189


Current Path : /var/www/magento.test.indacotrentino.com/www/scripts/tools/
Upload File :
Current File : /var/www/magento.test.indacotrentino.com/www/scripts/tools/magento2surf.php

<?php
require('../import/include/RestConnect.php');

$instance = 'MAGENTO-TEST';
$api = new Api();
$api->setMagento($instance);
$result = $api->getOrder(134);

$servername = "localhost";
$username = "typo3_indaco2";
$password = "indaco2";
$dbname = "iubenda_indaco";

$conn = new mysqli($servername, $username, $password, $dbname);
if ($conn->connect_error) {
    die("Connection failed: " . $conn->connect_error);
}

print_r($result).PHP_EOL;
echo "\n";
exit(1);