hi I just started learning php and got stuck with this
I have css layout not to repeat myself I created a header.php and a menu.php footer.php which I’d like to include
<?php include("includes/header.php"); ?>
but one of my doc have iframe and it won’t include anything
<?php include("includes/header.php"); ?>
<?php include("includes/menu.php"); ?>
<div class="main_window" id="content">
<div id="albumas">
<iframe id="album" name="album" src="album/index.php" frameborder="0" scrolling="no" align="top"></iframe>
</div>
</div>
<?php include("includes/footer.php"); ?>
anyone has any suggestions thanx
basically iframe loads lighbox gallery