Include giving spacing [closed]

-2

I'm having trouble with <?php echo include_once ("includes/right.php");?> it's an undesirable margin-top , how could I solve this problem?

    
asked by anonymous 05.10.2017 / 23:52

1 answer

0

Remove% with%. I do not know why he's there. To include a file just echo .

EDIT Code that I mentioned in the comment.

<div id="content">
    <div id="left">
        <ul>
            <li><div class="box_left">
                <h1>Entre em Contato</h1>

            </div></li>
        </ul>
    </div>
    <div id="right"><?phpinclude ("includes/right.php"); ?></div>

    <?php 
        include_once ("includes/footer.php");
    ?>
</div><!-- content -->
    
06.10.2017 / 00:31