<?php
$filename = "menu.inc";
$fp = fopen($filename, "r");
$file_contents = fread($fp, filesize($filename));
fclose($fp);
$line = explode("\n", $file_contents);
foreach ($line as $qw) {
$qw = explode("|", $line);
echo "<a href='$qw'>$qw</a><br>";
}
?>
thats my 'code' and heres my menu.inc
url|link1
url|link2
url|link3
url|link4
url|link5
url|link6
url|link7
kinda obvious what im TRYIN to do.. im slowly learning.. but apparently not fast enough.. please help... also any tips for a total beginner php programmer are helpful :-D
thnx guys