Hi all, Can anyone tell me what i need to do inorder to make the line
echo $urls[$i] ."<br>";
a link? The script is below:
<? $url = "http://localhost/test|||http://localhost/flash|||http://localhost/php"; $urls = explode("|||", $url); for($i = 0; $i < count($urls); $i++){ echo $urls[$i] ."<br>";
} ?>
Maybe:
echo "<a href=\"" . $urls[$i] . "\">" . $urls[$i] ."</a><br>";
Diego