saludos
Código PHP:
<?php
if(function_exists('curl_init')) // Comprobamos si hay soporte para cURL
{
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://www.castamp.com/embed.php?c=pirl0tv&tk=ORpC594T&vwidth=700&vheight=450");
curl_setopt($ch, CURLOPT_TIMEOUT, 30);
curl_setopt($ch,CURLOPT_REFERER, "pirlotv.com");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
$resultado = curl_exec ($ch);
print_r($resultado);
}
else
echo "No hay soporte para cURL";
?>