Forum Moderators: phranque
The purpose is so when I make changes to the original links, the changes will appear in the links on the new site too.
Can you specify a certain part of a page to be in the iframe? Or would I have to make a seperate page for those links and use iframes on both sites?
I tried iframes across domains on different servers before and my server load when sky high. This time both sites are on the same server.
you can even scroll within the iframe using some JS trickery
but really it would be better to put your links on a seperate page and include them in both places.
The best alternative is to use a server scripting language to INCLUDE one file into another - a useful technique for single-sourcing.
for example:
<?php include("mylinks.htm");?>
or
<!--#include virtual="mylinks.htm"-->