PHP Code:
<?php
$url = isset ($_GET['url']) ? $_GET['url'] : ""; // Retrieves $_GET variable from URL named 'url'
$title = isset ($_GET['title']) ? $_GET['title'] : ""; // For title
$url = "http://www.codingforums.com/showthread.php?t=263790"; // Test value
$title = "TEST PAGE"; // Test value
?>
<html>
<head>
<title><?php echo $title; ?></title>
<style type="text/css">
iframe {
width: 100%;
height: 100%;
border: none;
scroll: auto;
}
</style>
</head>
<body>
<iframe src="<?php echo $url; ?>"></iframe>
</body>
</html>