View Source: Product Details |
This demo shows how we can pass a drill down parameter from another screen ex905.php to drill down to product details. We use a session variable $gProductID to keep track of which details to display.
The source of the frameset:
<html>
<head>
<title>Master Detail drill down in Frame</title>
<style>
</style>
</head>
<frameset cols="35%,65%">
<frame name="left" target="right" src="ex905.php">
<frame name="right" src="ex905right.php">
</frameset>
<noframes>
<body bgcolor="#996600">
<p>This page uses frames, but your browser doesn't support them.</p>
</body>
</noframes>
</html>