|
PHP is server side, which means all it really does in your case is output HTML.
However, PHP does have the include() function, which means while it it putting out the page, it can include a file (such as a html file) into the the page you are including from. This way, when you view it in the browser, it is as if there were never two files, it's in the source. There are no boxes or scroll bars.
|