I'm trying to insert my pages back into their iframe on my index.php when found by themselves on searches.
I'm wanting to use php for this but not having any luck.
All I have is this which would go into the index.php
<php
if(!empty($GET[show_page])) {
echo "<iframe name='sara' height='100%' width='100%' src='$GET[show_page])'></iframe>";
} else {
echo '<iframe name="sara" height="100%" width="100%" src="index_main.php"></iframe>';
}
?>
...but I need the other piece that goes into the iframe page.
Thanks