30 lines
No EOL
1,010 B
PHP
30 lines
No EOL
1,010 B
PHP
<?php
|
|
use Guzzle\Service\Client;
|
|
use Symfony\Component\DomCrawler\Crawler;
|
|
error_reporting(-1);
|
|
ini_set('display_errors', 'On');
|
|
|
|
//----------------------------------------------------------------------------------------------------------------
|
|
//$url='https://api.ilonexs.de/php/schnittstellen_url.php?api=MbL~9X2kZU~&schnittstelle=1&';
|
|
//$url='https://api.ilonexs.de/php/schnittstellen_url.php?api=MbL~9X2kZU~&schnittstelle=1/schnittstellen_url.php';
|
|
$url = 'https://mob.ilonexs.de/php/prj_web/mob_meineimporte.php?ak=MbL~9X2kZU~';
|
|
//----------------------------------------------------------------------------------------------------------------
|
|
$ch = curl_init();
|
|
curl_setopt($ch, CURLOPT_URL, $url);
|
|
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET');
|
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
|
|
$response = curl_exec($ch);
|
|
|
|
echo 'HTTP Status Code: ' . curl_getinfo($ch, CURLINFO_HTTP_CODE) . PHP_EOL;
|
|
echo 'Response Body: ' . $response . PHP_EOL;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// VALUES ('$title', '$price', '$description')";
|
|
|
|
|
|
?>
|