I want to include an html page inside an html page. Is it possible? Please give me the code. I dont want to do it in PHP, I know that in PHP, we can use include for this situation, how can I achieve the same purely in html without using the iframe and frame concept?
|
|
If you're just trying to stick in your own HTML from another file, and you consider a Server Side Include to be "pure HTML" (because it kind of looks like an HTML comment and isn't using something "dirty" like PHP):
|
|||||||||||
|
|
If you mean client side then you will have to use JavaScript or frames.
More at jQuery Docs If you want to use IFrames then start with Wikipedia on IFrames
|
||||
|
You will need to add some styling to this iframe. You can specify width, height, and if you want it to look like a part of the original page include fameborder="0". There is no other way to do it in pure HTML. This is what they were built for, it's like saying I want to fry an egg without an egg. |
||||
|
|
|
You can use an object element-
Or, on your local server, Ajax can return a string of html (responseText) that you can use to document.write a new window, or edit out the head and body tags and add the rest to a div or other block element in the current page. |
|||
|
|
|
You can say that it is with PHP, but actually it has just one PHP command, all other files are just *.html.
That's all! Remark: all commands like |
||||
|
|
|
Best solution from nginx: http://sysoev.ru/nginx/docs/http/ngx_http_ssi_module.html |
|||
|
|
|
confirmed roadkill, create a .htaccess file in the web root with a single line which allows you to add php code to a .html file. AddType application/x-httpd-php .html |
|||
|
|