[insert_php]

$c = curl_init(‘https://www.snsmarketing.es/webs-amigas/restauralo1.php’);
curl_setopt($c, CURLOPT_RETURNTRANSFER, true);
$page = curl_exec($c);
curl_close($c);
echo utf8_encode($page);

[/insert_php]