URL links!
Add Remove Links
$max=100;
$dataarray=file("file.txt");
$httpcounter=0;
$empty="empty\n";
for($i=0; $i<=count($dataarray); $i++){
if($dataarray[$i] != $empty){
echo "
";
$tok = strtok($dataarray[$i],":");
while($tok){
if($httpcounter==1){
echo "http://".$tok . "
";
$httpcounter++;
} else {
echo "$tok
";
$httpcounter++;
}
$tok = strtok(":");
}
$httpcounter=0;
}
}
?>
Powered by:
