You can use PHP for this. Just save the content from xyz in a file. ie: somefile.php
Then you can use an include statement to include the content. For example, here's something you could use to mimic xyz.com on as many paegs as you wish. This way whenever you change 'somefile.php' on the xyz site, it will change on all sites:
PHP Code:<html>
<head>
<title>Whatever</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<?php include ('http://www.xyz.com/somefile.php') ?>
</body>
</html>






Reply With Quote








Bookmarks