Hi All
I'm having a problem with the php include. I'm sure it's very simple but I'm still new at this and trying to find my way.
This is my code (very basic) and all I'm trying to do is add content to a web page. However, my problem is that when the web page is displayed there are white spaces between each element. Is there a way I can get rid of this so they all connect together. The files that I'm trying to include..'home page.html', 'nav_include.php' & 'body_include.html' all just have one line of code ..<img src="image_i_want_to_display.jpg">
<html>
<head>
<title>Title_Menu</title>
</head>
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<?php include("home page.html"); ?>
<?php include("Nav_include.php"); ?>
<?php include("Body_Include.html"); ?>
</body>
</html>
Thanks much!