Hello...
im looking for Iframe where the url can be shown in the Url Adress bar
and if i click on other link inside the iframe page i want it to change on the URL Adress bar is it possible???
for example like that
www.websitename.com/index.php?iframes=thepagename
i have this code
- PHP: Select all
<?php
if (!isset($_GET['rub'])) {
echo "<iframe src=\"inc/main.php\" width=\"100%\" height=\"100%\" marginheight=\"0\" marginwidth=\"0\" frameborder=\"0\"></iframe>";
} else {
('inc/'.$_GET['rub'].'.php');
echo "<iframe src=%22%22 . 'inc/'.$_GET['rub'].'.php'. "" width=\"100%\" height=\"100%\" marginheight=\"0\" marginwidth=\"0\" frameborder=\"0\"></iframe>";
}
?>
but with this code it will work as normal Iframe please need your help ASAP thx