@samara
To prevent "&" from being replaced by "&" in PHP includes, you can use the htmlspecialchars_decode function to decode the html entities:
1 2 3 |
<?php include htmlspecialchars_decode("file.php"); ?> |
This will prevent the "&" from being encoded as "&" in the included file.