bullex Posted December 7, 2012 Share Posted December 7, 2012 Hi Everybody! I'm new to php programming and have no clue on doing this. I need to create a script to connect to another webshop and get all products from all categories and then save this informations to a database. I have a little script but i dont't know how to continuous. <?php function get_file($url){ $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_HEADER, false); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, true); curl_setopt($ch, CURLOPT_TIMEOUT_MS, 44000); curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)'); $html = curl_exec($ch); curl_close($ch); return $html; } function getPage($html){ $page = 1; if ( preg_match("/<ol><span class=\"pppt\">([0-9]+) products found<\/span>/", $html, $rez) ) { $page = ceil($rez[1] / 100); } elseif ( preg_match("/<ol><span class=\"pppt\">Viewing all ([0-9]+) products<\/span>/", $html, $rez) ) { $page = ceil($rez[1] / 100); } return $page; } $url = "http://www.website.com/produs-"; echo get_file($url); function getColcode($html){ if ( preg_match_all('`http://images.website.com/images/products/([0-9]{8})_.*.jpg`Usi', $html, $rez) ) { return $rez[1]; } return false; } ?> Link to comment https://forums.phpfreaks.com/topic/271708-how-to-grab-content-of-another-site-using-php-culr/ Share on other sites More sharing options...
trq Posted December 7, 2012 Share Posted December 7, 2012 Awesome. You need to be a lot more specific I'm afraid. Link to comment https://forums.phpfreaks.com/topic/271708-how-to-grab-content-of-another-site-using-php-culr/#findComment-1398068 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.