Page 1 of 1

html problems :(

Posted: Sun Oct 26, 2008 10:05 am
by Downstairs
I recently changed my friend's homepage that was based on <frames> to <table>.
Then I had this idea of pastleing a .html document into the page so it would be easier to edit the page later on, so instead of changing the index.html file I just have to change the extra.html file.

Anyone who have an idea on how this can be done?

Posted: Sun Oct 26, 2008 10:16 am
by Grand_Master
I don't really understand what your problem is. Are you doing iframes? What did you paste?

Posted: Sun Oct 26, 2008 10:31 am
by Downstairs
no i using <table>

I've tried with:

Code: Select all

<table>
<tr>
<td href="file.html">
</td>
</tr>
<table>
hope you understand..
if I use frames the page will be "divided" and that's what I try to avoid

Posted: Sun Oct 26, 2008 2:27 pm
by m!nus
may i laugh now?

in general i think that learning by doing is good, but if you have absolutely no clue you should get some tutorial first

Posted: Sun Oct 26, 2008 6:17 pm
by Downstairs
m!nus wrote:may i laugh now?

in general i think that learning by doing is good, but if you have absolutely no clue you should get some tutorial first
oh, thanx for the advice. don't know if I ever could solve this problem without your answer

Posted: Sun Oct 26, 2008 7:46 pm
by kilkenny
What u r tryin to do requires either PHP or AJAX.
PHP is a server-sided scripting language and ajax is based on java-script.

The simple PHP-code to include a file would be

Code: Select all

<?php
include('file.htm');
?>
You could also do it with the C-like functions fopen(), fgets() and fclose().
BUT: PHP requires a webserver that interprets the scripts.

Try to learn some basic PHP first.

Or if u wanna do it with AJAX read tutorials about that.

AND PLEASE: NEVER EVER DO DESIGNS WITH TABLES. Learn CSS and read about barrier-free webdesign.

Posted: Sun Oct 26, 2008 8:48 pm
by therethinker
kilkenny: as bad as tables are, people who are told not to use them tend to use alternate elements in a similar, poor manner. Its only slightly better than the table-based layout semantics-wise; but it is rarely cross-browser.
(I'm recommending that he sticks with the tables)

And I'd be wary using AJAX in a normally static page. I'm also not sure if he has access to PHP or another server-side processor.

Anyway: I'd keep the <frame>'s & possibly use <iframe>, if it helps. Like tables, its terrible design practice, but it will accomplish what you need to do without any extra technology.

Posted: Sun Oct 26, 2008 11:52 pm
by canine
therethinker wrote:kilkenny: as bad as tables are, people who are told not to use them tend to use alternate elements in a similar, poor manner. Its only slightly better than the table-based layout semantics-wise; but it is rarely cross-browser.
(I'm recommending that he sticks with the tables)

And I'd be wary using AJAX in a normally static page. I'm also not sure if he has access to PHP or another server-side processor.

Anyway: I'd keep the <frame>'s & possibly use <iframe>, if it helps. Like tables, its terrible design practice, but it will accomplish what you need to do without any extra technology.
One should use tables where they would logically be used, that is, to make a table of data. Anything else is crap. Of course it's still possible to make a bad webpage, but it's less likely.

I'd recommend SSI instead of PHP, if all you're doing is including a file within another, and you usually have access to it, including times when you don't have access to PHP.

Posted: Mon Oct 27, 2008 6:47 pm
by therethinker
canine wrote: One should use tables where they would logically be used, that is, to make a table of data. Anything else is crap. Of course it's still possible to make a bad webpage, but it's less likely.
Although I said I would normally agree, if you just end up nesting div's to create the same effect, you're not doing anything better.

Posted: Mon Oct 27, 2008 7:01 pm
by Downstairs
Thanks for the great answers!
I don't want to learn php right now since I'm learning C++.
My current web hotel don't support php so I'll stick to iframes and div until I find a better solution :)

Posted: Mon Oct 27, 2008 9:12 pm
by canine
therethinker wrote:
canine wrote: One should use tables where they would logically be used, that is, to make a table of data. Anything else is crap. Of course it's still possible to make a bad webpage, but it's less likely.
Although I said I would normally agree, if you just end up nesting div's to create the same effect, you're not doing anything better.
Well, depends on what you're doing.

I usually have three high level div's, and that's the extent of it. It's better than tables because div only implies division, while table implies data.