Hi,
I have a html file Top.htm:
<form action="" method="post">
<fieldset>
<input id="searchbox" type="text" name="zoekfunctie" value="Zoek..." />
<input type="submit" name="zoekbutton" value="Zoek" />
</fieldset>
</form>
I then include this page in my index page (and in many more pages to come):
<div id="top">
<?php
include("Top.htm");
?>
</div>
Now the problem is that, for wathever reason there may be, an empty line gets inserted above the html form: Here. However, when I don't include the code, but I just put it in the index page:
<div id="top">
<form action="" method="post">
<fieldset>
<input id="searchbox" type="text" name="zoekfunctie" value="Zoek..." />
<input type="submit" name="zoekbutton" value="Zoek" />
</fieldset>
</form>
</div>
Than it looks like this: Here
This is the case with every browser. Does anyone has an idea what the problem is, and how to solve it?
Thank you