aver tengo esto
Código PHP:
Ver original<?php
function url($url)//Se le pasa la url
{
$fp=@fopen($url,"r");//Utilizamos fopen para abrir esa url
if($fp){//Si fopen abre la url
return $url." <font color=\"#006633\">Active</font>";
}else{//si no devuelve false
return $url." <font color=\"#FF0000\">Inactive</font>";
}
@fclose($fp);//Cerramos la conexion }
$file = fopen("list.txt", "r") or
exit("Unable to open file!"); //Output a line of the file until the end is reached
{
echo url
(fgets($file)). "<br />"; }
pero me salen todas Inactiva cuando hay barias Activas