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
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:<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>
Also, on the sub pages located in the php folder I haveHTML Code:URL /job1/php/index.php
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 alsoHTML 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>
Thanks,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>
Nightwalker




Reply With Quote