PHP gevorderde |
|
een frameset maken in de index
bv dit
index.html:
<html>
<head>
<title>mijnsite.be</title>
</head>
<frameset rows="64">
<frame name="hoofd" src="index.php">
<noframes>
<body>
<p>On this site frames are used, your browser does not support frames, click <a href="index.html" target="_blank">here</a>
to contiune without frames.</p>
</body>
</noframes>
</frameset>
</html>
<html> <head> <title>mijnsite.be</title> </head> <frameset rows="64"> <frame name="hoofd" src="index.php"> <noframes> <body> <p>On this site frames are used, your browser does not support frames, click <a href="index.html" target="_blank">here</a> to contiune without frames.</p> </body> </noframes> </frameset> </html>
|