Published in: PHP
<?php $url="http://www.site.com"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); $data = curl_exec ($ch); curl_close ($ch); $regex = '/([^`]*?)/'; ?>
You need to login to post a comment.
