View Single Post
Old 04-21-2009, 07:07 PM   #3 (permalink)
CrazeD
CrazeD's Avatar
 
Wizard Techie

Join Date: Feb 2006

Location: Maine

Posts: 3,690

CrazeD will become famous soon enough

Send a message via AIM to CrazeD Send a message via MSN to CrazeD
Default Re: html from src file

What you're asking can't be done by reasonable means. You could use frames or iframes, but that's ugly and is no longer recognized as an acceptable solution.

What oldskool mentioned above is for CSS stylesheets, but they can't contain HTML.

In order to do what you want, you would need a serverside language that supports including other files, such as PHP.

PHP Code:
<?php

include ('menu.html');

// dynamic stuff here

?>

__________________

Need website help? PM me!
CrazeD is offline