php_beginner_83 Posted April 11, 2009 Share Posted April 11, 2009 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.php', 'nav_include.php' & 'body_include.php' 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.php"); ?> <?php include("Nav_include.php"); ?> <?php include("Body_Include.php"); ?> </body> </html> I've attached a picture of what I'm talking about. Thanks much! [attachment deleted by admin] Quote Link to comment https://forums.phpfreaks.com/topic/153648-php-include/ Share on other sites More sharing options...
9three Posted April 11, 2009 Share Posted April 11, 2009 Check your PHP files and see if you are echoing/printing a <p> or <br> Quote Link to comment https://forums.phpfreaks.com/topic/153648-php-include/#findComment-807371 Share on other sites More sharing options...
gffg4574fghsDSGDGKJYM Posted April 11, 2009 Share Posted April 11, 2009 I don't think it's a php problem. Probably a html/css one. Add this between you <head></head> tag <style type="text/css"> img { margin:0; padding:0; border:0; } </style> Get very confortable with html/css before playing with php will save you from a lot of headache Quote Link to comment https://forums.phpfreaks.com/topic/153648-php-include/#findComment-807372 Share on other sites More sharing options...
andy9 Posted April 11, 2009 Share Posted April 11, 2009 Well, this is what you essentially want: <html> <head> <title>Title_Menu</title> </head> <body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"> <!--Main Content--> <table cellspacing="0" cellpadding="0"> <tr><td> <?php include("home page.php"); ?> </td></tr> <tr><td> <?php include("Nav_include.php"); ?> </td></tr> <tr><td> <?php include("Body_Include.php"); ?> </td></tr> </table> <!--End Main Content--> </body> </html> So try using that code, but I've noticed you're using 'home page.php', you may want to rename this to 'homepage.php', or 'home_page.php'. Spaces never turn out well in programming I've just done a demo, it works for me without any spaces and I used exactly the same technique as you described. Quote Link to comment https://forums.phpfreaks.com/topic/153648-php-include/#findComment-807384 Share on other sites More sharing options...
mrMarcus Posted April 11, 2009 Share Posted April 11, 2009 for starters, this isn't a PHP problem .. it's either a CSS or HTML issue .. without seeing your display code, absolutely nothing can be done. if you're using tables, perhaps just adding <table cellpadding="0" cellspacing="0"> will work .. can't say without seeing how the content is being outputted to the browser. Quote Link to comment https://forums.phpfreaks.com/topic/153648-php-include/#findComment-807423 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.