I understand that, but what I'm saying is I have everything already made up for doing that - you just have to create a new file and put the following in it.
Code:
<?php
function id_name_url_link($arr_teams, $str_spacer) {
foreach ($arr_teams as $i => $value) {
echo $str_spacer . $arr_teams[$i]["id"] . " - " . $arr_teams[$i]["name"] . " - <a href=\"" . $arr_teams[$i]["website"] . "\" title=\"" . $arr_teams[$i]["name"] . "\" target=\"_blank\">" . $arr_teams[$i]["website"] . "</a>";
}
}
$teams = unserialize(file_get_contents("team_file.php"));
id_name_url_link($teams, "<br>");
?>
As can be seen
here.
I just think its pointless to try getting information I already have.
