Re: [PHP] PHP creating table for HTML layout

2002-07-23 Thread Martin Clifford
PHP is server-side, so it can't do anything that would help with the layout of HTML on the client-side. You might want to look into Cascading Style Sheets (CSS) to format the page so that it validates the way you want it to :o) HTH! Martin Clifford Homepage: http://www.completesource.net

RE: [PHP] PHP creating table for HTML layout

2002-07-23 Thread Vail, Warren
I have had some success with something similar to what you want to do, using frames. The bottom footer always remains at the bottom of the browser page with the upper body becoming scrollable when it fills up and no longer fits. Perhaps you can use some variation of this. HTML HEAD TITLEMy

Re: [PHP] PHP creating table for HTML layout

2002-07-23 Thread Justin French
PHP can't help here -- you should do a search on the web for liquid website designs, or check out / borrow some code from other sites you've seen work. Although not valid, I've seen height=100% work on 1000's of sites. Combined with a CSS statement, you should be able to cover all browsers.

Re: [PHP] PHP creating table for HTML layout

2002-07-23 Thread Briggsy
Thanks to all those who replied here and directly. I have realised PHP isn't going to do what I want and have gone back to researching using CSS and float tags. Thanks for all the suggestions. Shane Martin Clifford [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...