i have the strangest bug. in my php file i include several php files:
<?php
include("a.php");
include("b.php");
include("c.php");
?>
<html>
<head>
<link rel="stylesheet" type="text/css" href="src/main.css" ></link>
<script src="src/jquery-1.3.2.js" type="text/javascript" ></script>
</head>
<body>
some more code here...
when the page is rendered, i see that there are about 18px added to the layout, and the link and script tags were moved inside the body section. If i remove the include of b.php and c.php it doesn't happen.
herhangi bir düşünce?