php op html
Geplaatst: 18 aug 2006, 15:19
Hoe kun je een php forum op een html pagina zetten?
Code: Selecteer alles
<iframe src="http://www.mijnforum.nl/" width="100%" height="600px"></iframe>
Hoe krijg je de borders weg rondom de Iframe, en de scrollbalk, zodat je gewoon kan scrollen met de scrollbalk van de browser?Stef schreef:Dit in je HTML pagina plakken:Code: Selecteer alles
<iframe src="http://www.mijnforum.nl/" width="100%" height="600px"></iframe>
Code: Selecteer alles
<script language="JavaScript">
<!--
function calcHeight()
{
//find the height of the internal page
var the_height=
document.getElementById('the_iframe').contentWindow.
document.body.scrollHeight;
//change the height of the iframe
document.getElementById('the_iframe').height=
the_height;
}
//-->
</script>
Code: Selecteer alles
<iframe width="700" id="the_iframe"
onLoad="calcHeight();"
src="http://www.mijnforum.nl"
scrolling="NO"
frameborder="1"
height="1">
An iframe capable browser is
required to view this web site.
</iframe>