Hi there
I have a php page, in which i call a file using the format...
<?php include("nav.txt"); ?>
The nav.txt file consists of a series of links in the format...
<? $aaa = firstKeyword(a) ?><? $aaa = str_replace(" ","-",$aaa); ?><a href="<? domain(); ?><? echo"$aaa" ?>" title="">A</a>..
<? $aaa = firstKeyword(b) ?><? $aaa = str_replace(" ","-",$aaa); ?><a href="<? domain(); ?><? echo"$aaa" ?>" title="">B</a>..
<? $aaa = firstKeyword(c) ?><? $aaa = str_replace(" ","-",$aaa); ?><a href="<? domain(); ?><? echo"$aaa" ?>" title="">C</a>..
Basically this allows me to click on the letter of the alphabet in the menu, and go to a page etc etc
However, my pages will only load up to various letters of the nav.txt file and then stop
as my nav is at the top, nothing else under that loads either
any reason why?