add frameset within tables?

Status
Not open for further replies.

gohand

In Runtime
Messages
151
anyone know is there a way to add a redirect page within a html table? with php, instead of using include(or maybe something more is needed with include)function, to add a page like frameset inside of a table, because when include a page inside a table, if the page is big, the table becomes big too, and is is always not flexible enough, but framesets had slide bar, so, even the page is largger than the dimention of the table, it uses slide bar so that the whole page won't deform, know what i meant? can anyone help me with this? thanks alot.
 
I believe what you are looking for is an I Frame

Syntax <IFRAME>...</IFRAME>
Attribute Specifications SRC=URI (URI of frame content)
NAME=CDATA (name of frame)
LONGDESC=URI (link to long description)
WIDTH=Length (frame width)
HEIGHT=Length (frame height)
ALIGN=[ top | middle | bottom | left | right ] (frame alignment)
FRAMEBORDER=[ 1 | 0 ] (frame border)
MARGINWIDTH=Pixels (margin width)
MARGINHEIGHT=Pixels (margin height)
SCROLLING=[ yes | no | auto ] (ability to scroll)
core attributes

<IFRAME SRC="bla.html" WIDTH=300 HEIGHT=100></IFRAME>
 
Status
Not open for further replies.
Back
Top Bottom