hey guys,
im trying to find an alternative solution to iFRAME as most browers do not like iFRAME.
now i was trying to use PHP and tried the following...
now in theory if i do call index.php?show=news i should be calling news.php in the index page right?? for some reason it calling the news page seperately and not in the index page.PHP Code:<?php
if ($show == "") {
include ("main.php");
} else {
include ("$show.php");
}
?>
any ideas?





Bookmarks