<?php
function getHTML($host, $port, $url)
{
if(!$fp = fsockopen($host, $port, $errno, $errstr, 30))
{
return -1;
}
fputs($fp, "GET " . $url . " HTTP/1.0\r\n\r\n");
while(!feof($fp))
{
$result .= fread($fp, 128);
}
return $result;
}
$host = "www.solocodigo.com";
$port = 80;
$url = "/foros/index.php?showtopic=9048";
$result = getHTML($host, $port, $url);
echo $result;
?>