Dudeking
08-04-2007, 05:11 PM
I have never used frames before but I now have a use for them. So I wondered if some one could tell me why this dosnt work :D
<?php
$pagename = 'Forum';
$domain = 'http://dudeking.co.uk';
include($domain.'/include/static/head.php');
echo "Dudeking.co.uk - $pagename";
include($domain.'/include/static/top.php');
include($domain.'/include/static/links.php');
include($domain.'/include/static/middle.php');
echo'
<frameset cols="100%">
<frame src="/social/forum/index.php" />
</frameset>
';
include($domain.'/include/static/footer.php');
?>
<?php
$pagename = 'Forum';
$domain = 'http://dudeking.co.uk';
include($domain.'/include/static/head.php');
echo "Dudeking.co.uk - $pagename";
include($domain.'/include/static/top.php');
include($domain.'/include/static/links.php');
include($domain.'/include/static/middle.php');
echo'
<frameset cols="100%">
<frame src="/social/forum/index.php" />
</frameset>
';
include($domain.'/include/static/footer.php');
?>