i struggled with a piece of code for like 3 hours, then i decided to delete everything to find out what's the problem.
this simple code :
CODE
<?php
include('anyfile.php');
echo '
<html>
<body>
<table border="10">
<tr><td>asdas</td></tr></table>
</body>
</html>';
?>
include('anyfile.php');
echo '
<html>
<body>
<table border="10">
<tr><td>asdas</td></tr></table>
</body>
</html>';
?>
If this file is saved in ANSI , everyting goes right.
IF this file is saved in UTF-8 (as i'm using arabic characters i have to save it on UTF-8), the include line inserts gap at the top of the page. a white line with a height of 5 maybe, that i killed myself to remove, it won't go unless i remove the include line. (i've tried all body margin , padding to 0 . it is not part of the html i guess)
What should i do ? ??? ??? ??? (it all happens in IE 6. FF is fine about it)
