Well, you could do this:
HTML Code:
<FRAMESET>
<FRAME SRC="/crom.html">
</FRAMESET>
But I really wouldn't recommend it. It's overly complicated, and frames are not completely recognized by all browsers. And, there are lots of other ways to go about achieving this goal that have less code, and are widely recognized!
First off, you could use a php include:
PHP Code:
<?php include('crom.html'); ?>
Or even a server side include:
HTML Code:
<!--#include virtual="/crom.html" -->
- Steve
Last edited by stevej; 01-28-2009 at 01:14 PM..
|