I'm trying to figure out how to insert one html page into another. I need a scrollable window/page in another page. Can this be done? If so how. I don't know how to program. So take it slow and easy.
thanks😃
It's called iframes. It's more css then php.
It would look something like this.
<iframe id='window_2' src='blah.htm' width='170' height='200' marginwidth='0' marginheight='0' hspace='0' vspace='0' frameborder='0' scrolling='yes'></iframe>
to make that a little more simple, half that stuff you dont even need to define as "0"
just use..
<iframe src="http://yoursite.com/page" width=" " height=" " frameborder=" " scrolling="auto" marginwidth="0" marginheight="0"></iframe>
Thanks guys,
I knew it was something simple. I just didn't know.
Thanks for your time.