|
|||||||
This is a discussion on "Alternatives to frames" in the Top Mud Sites MUD and RPG Webmasters forum : I want to revamp my website. I'm not that great at html, I'd consider myself between beginner and intermediate. What are some possible alternatives to frames? I don't want to use tables on every page as that would get horribly tedious to update when there are changes to the website. Frames aren't accepted by all browsers. What choices do I have at this point that I would be able to do myself? Any help is greatly appreciated.... |
|
You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our MUD community today! If you have any problems with the registration process or your account login, please contact us. If you are a registered member of the old TMS forums, please click here
|
![]() |
|
|
LinkBack | Thread Tools |
|
|
#1 |
|
New Member
|
I want to revamp my website. I'm not that great at html, I'd consider myself between beginner and intermediate.
What are some possible alternatives to frames? I don't want to use tables on every page as that would get horribly tedious to update when there are changes to the website. Frames aren't accepted by all browsers. What choices do I have at this point that I would be able to do myself? Any help is greatly appreciated. |
|
|
|
|
|
#2 |
|
Moderator
Join Date: Jan 2006
Location: Seoul
Posts: 192
![]() |
Grab a book on asp or php and see if you understand it. Mainly you want the includes feature. Using includes you can include your sidebar or whatever it is you are currently using frames, onto all your webpages(use tables so it looks nice) then if you ever need to change it you just change the include file and your whole site changes.
|
|
|
|
|
|
#3 | |
|
Moderator
Join Date: Sep 2002
Location: Mill Valley, California
Posts: 2,084
![]() |
Quote:
--matt |
|
|
|
|
|
|
#4 |
|
New Member
Join Date: Sep 2002
Posts: 13
![]() |
By the looks of your hosting company, your best bet would be to learn PHP. Granted that you are allowed to use it with whatever account you have there.
It shouldn't take much learning - just enough to know how to include one template into another and grab entries from a database. But it'll make your life so much easier, compared to trying to edit all the pages by hand. |
|
|
|
|
|
#5 |
|
Member
|
You don't really need a knowledge of php in order to use simple includes. If you're able to cut up your page in a header, body, and footer, you can save your header and footer as something like, header.inc and footer.inc, and then place the includes for them at the top and bottom of your page (saved as .php) you should be fine.
[code] <? include('footer.inc'); ?>[/quote] I'd suggest reading up on some CSS to start. php is good to know, but you're not going to get anywhere as fast as with CSS. Look up how to use the float function and you can replace almost every use of tables (not all, but close |
|
|
|