Jump to content

Recommended Posts

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]

Link to comment
https://forums.phpfreaks.com/topic/153648-php-include/
Share on other sites

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 :P

Link to comment
https://forums.phpfreaks.com/topic/153648-php-include/#findComment-807372
Share on other sites

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.

Link to comment
https://forums.phpfreaks.com/topic/153648-php-include/#findComment-807384
Share on other sites

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.

Link to comment
https://forums.phpfreaks.com/topic/153648-php-include/#findComment-807423
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.