if i have 10 pages and each of the page has the same navigation bar, i don't think duplicating the code again and again in every page is the right solution... what do the pro normally do?
** i tried to use a frame inside one of my div tag to link the page to the navigation page
something like this: (it is not even showing anything somehow)
<div id="linkBox">
<frameset cols="100%">
<frameset rows="100%>
<frame src="navigationPage.htm" />
</frameset>
</frameset>
</div>
i am also thinking to write a php function in an external class to create the navigation bar... so every page i need the navigation bar i can simply call that php function... if navigation bar has to be modified, then I'll just modify the php function.
just not sure what would the pro do.. i wanna follow the convention.
***************************
professional web programmers here please give me some quick suggestion. Thanks very much.
***************************