Просмотр поста

.
muhago97
# serghei (01.09.2016 / 20:33)
код/скрипт покажи
<?php
header("Content-type:text/html; charset=utf-8");

$ref = 'http://galaxy.mobstudio.ru/services/index.php?userID=37037945&password=*****&a=whois_goods&usercur=24859269&&kbv=127&lngg=ru&dbl=5';
$file_content = file_get_contents($ref);
preg_match_all('~goodID=(\d{1,12})~',$file_content,$good_id);

if (!empty($good_id[1])) {

foreach ($good_id[1] as $thing) {

echo 'Ид Вещь: '. $thing .'<br />';
// ид вещей

}

}
?>