ok sorry i dont have enough time at the moment to go tho it,
but some hints,
when ur assigning variables, you dont need to put it in brackets
$sect = ('Games');
$sect = 'Games';
does just as well, cuts down ur file size and makes it a little easier to read.
Also when assigning variables i would advise using single quotes
because PHP parses double quotes and so using double quote when its just pleain text and html it lighten the load on php a litle,
isnt needed when assigning variables i would advise using single quotes.
so
PHP Code:
<?php $nav1hometf = "http://www.technologyforever.com/"; //main $nav2blogtf = "http://www.technologyforever.com/blogtf/"; //Blog $nav3gamestf = "http://www.technologyforever.com/game1.html"; //Games $nav4forumstf = "http://www.technologyforever.com/forums/"; //Forums $nav5contacttf = "http://www.technologyforever.com/contact.html" ?>
could be better as
PHP Code:
<?php $nav1hometf = 'http://www.technologyforever.com/'; //main $nav2blogtf = 'http://www.technologyforever.com/blogtf/'; //Blog $nav3gamestf = 'http://www.technologyforever.com/game1.html'; //Games $nav4forumstf = 'http://www.technologyforever.com/forums/'; //Forums $nav5contacttf = 'http://www.technologyforever.com/contact.html'; ?>
when i have a bit more time il ahev a better look  hope this helps.
__________________
Discounted Web Hosting With XDnet! >> Get 25% of hosting~ Promo: Webmaster-talk <<
|