I have two PHP pages that I want to include into a single page.
I'm using the following truncated code:
else if ($comp == "hardware" and $clientid >0){
include("inventory/toolbar.php");
include("inventory/hardware.php");
The page displays,but the code from toolbar is next to the code from hardware. What I would like to do is have toolbar on top and hardware on bottom. Perhaps I'm going about this the wrong way...
Advice is appreciated.
Thanks.
Steve