[RESOLVED] Internal Page Links
Hi,
It has been awhile since I have created a html website and the internal page to page links are causing me no end of trouble. On the index page I have
HTML Code:
<a href="php/enter.php" title="Enter Data">Enter Data</a><a href="php/view.php">View Data</a><a href="php/browse.php" title="Browse Data">Browse Data</a><a href="php/search.php" title="Search">Search</a></body></html>
and all those pages are located in the php folder, yet, the only links that redirects correctly are those for the entry and browse pages. Both the view page and search page report this as the address as oppose to "view.php" and "search.php".
HTML Code:
URL /job1/php/index.php
Also, on the sub pages located in the php folder I have
HTML Code:
<a href="../index.php" title="Home">Home</a><a href="../php/enter.php" title="Enter Data">Enter Data</a><a href="../php/browse.php" title="Browse Data">Browse Data</a><a href="../php/search.php" title="Data Search">Search</a>
Yet, the only "Home" link that works is the "Enter Data" page despite all the sub pages having the same links... Also, the across page links do not work either so I ca not browse from sub page to sub page despite trying both the above code and also
HTML Code:
<a href="../index.php" title="Home">Home</a><a href="enter.php" title="Enter Data">Enter Data</a><a href="browse.php" title="Browse Data">Browse Data</a><a href="search.php" title="Data Search">Search</a>
Thanks,
Nightwalker