|
|
Subject:
website design and constructions
Category: Computers > Internet Asked by: robertwolpov-ga List Price: $5.00 |
Posted:
03 Nov 2005 16:10 PST
Expires: 01 Dec 2005 09:08 PST Question ID: 588657 |
Looking for a good PHP website navigation tool. I am willing to pay for it. What I want is to build a website that has 30+ pages and growing but I want to stop adding each new navigation item to every page whenever I add a new page. I know a little php so I can modify if necessary. I would like to find someone in the NY area that I could potentially use as a good web designer / webmaster for this project. | |
|
|
There is no answer at this time. |
|
Subject:
Re: website design and constructions
From: goto11-ga on 04 Nov 2005 06:58 PST |
I would probably create one navigation file (nav.php, for example) and use a require statement to call it on every other page in your site. For example (very simplified here): (nav.php) <ul> <li><a href="page1.html">Page 1</a></li> <li><a href="page2.html">Page 2</a></li> <li><a href="page3.html">Page 3</a></li> </ul> Then, wherever you wanted to put that navigation in your site, use the following: <?php require_once("nav.php"); ?> That way you only have one file to maintain. I don't think you need a web tool for this task. Hope it helps. |
If you feel that you have found inappropriate content, please let us know by emailing us at answers-support@google.com with the question ID listed above. Thank you. |
Search Google Answers for |
Google Home - Answers FAQ - Terms of Service - Privacy Policy |