ENVIA MENSAJE DE TEXTO
function webvisitas_file_get_contents_an($url)
{
$url = parse_url ($url);
if ($handle = @fsockopen ($url["host"], 80))
{
fwrite ($handle, "GET $url[path]?$url[query] HTTP/1.0rnHost: $url[host]rnConnection: Closernrn");
while (!feof($handle))
{
$string .= @fread($handle, 40960);
}
$string = explode ("
", $string);
$string = array_pop ($string);
fclose($handle);
}
return $string;
}
$url="http://www.webvisitas.com/intercambiolinksphp/getlink.php?idusuariophp=1083&tipo=anuncio&bgcolorlink=0000CC&bgcolortext=000000&colorlink=FF0000&colortext=FFFFFF";
echo webvisitas_file_get_contents_an($url);
?>
|