esempio


index.html
codice:
<html>
	<head>
		<title>iframe del menga</title>
		<style type="text/css">
			html, body {
				width: 100%;
				height: 100%;
				margin: 0px;
				padding: 0px;
			}
			#sx, #dx {
				position: relative;
				top: 0px;
				height: 100%;
				border: 0px;
			}
			#sx {
				float: left;
				width: 20%;
				border-right: 1px solid silver;
			}
			#dx {
				float: right;
				width: 79%;
			}
		</style>
	</head>
	<body>
		<iframe id="sx" src="sx.php"></iframe>
		<iframe id="dx" src="dx.php"></iframe>
	</body>
</html>
sx.php
codice:
<?php
$_GET['cosa'] = isset($_GET['cosa']) ? $_GET['cosa'] : 'niente';
echo "{$_GET['cosa']}";
?>
dx.php
codice:
gatti

cani