heres the code..
Code: Select all
<?
$content = <<<HTML
<iframe src=tfunc.php name=tagboard frameborder=0 height=400 width=100%></iframe>
HTML;
include('layout.php');
?>Code: Select all
<div style="position:absolute;top:230;left:200">
<table cellpadding=0 cellspacing=0 border=1 bordercolor=black width=400>
<tr><td bordercolor=white><br><?=$content; ?></tr></td>
</table>
</div>Code: Select all
<?
$content = include('tfunc.php');;
include('layout.php');
?>here is an example of how it looks:
http://www.ice-on-fire.net/inclusion.php
any idea why it decided to put a 1 there and then include itself at the top of the page? or how i could edit inclusion.php to make it include in the right spot...
sorry, im only a couple weeks into learning php, (and im a teenager)