I have two pages, header.php and sidebar.php which I want to include on several pages using:
<?php
include 'header.php';
?>
<?php
include 'sidebar.php';
?>
However, there are two different issues.
On this page http://ewh.ieee.org/r1/schenectady/New/index.php , the included text is put BELOW the text on index.php, even thought it is included BEFORE the index.php text.
On this page http://ewh.ieee.org/r1/schenectady/New/events.php , you can see that the sidebar is "messed up" (the yellow part is much wider than it should be, and the table starts below the sidebar rather than to the right of it.
Any suggestions on how to fix these things?
Thanks!
David