connection header.php

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
terrenuit
Forum Commoner
Posts: 53
Joined: Tue Jul 08, 2014 2:18 pm

connection header.php

Post by terrenuit »

Hi,
I create a site with a header.php,
the problem is I can see the header, but the text index.php cannot display,
help me please !

header.php
<table width="1000" border="0" cellspacing="0" cellpadding="0" align="center" >
<tr>
<td><img src="images/fond.jpg" width="1000" height="150" alt=" France" /></td>
</tr>
<tr>
<td>
</td>
</tr>
<tr>
<td><img src="images/naviga.jpg" width="1000" height="53" alt="randonne" /></td>
</tr>
</table>

index.php
index.php
<body>
<?php require_once("header.php") ?>
<div class="corp">
<table width="1000" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td> <div id="apDiv1">
Rocky Mountain ATV/MC offers special dealer discounts. Qualified dealers can enjoy the low cost, quality products that Rocky Mountain ATV/MC sells. With different levels, Rocky Mountain ATV/MC is offering this discount to jobbers as well as retail establishments. Some brands are excluded, including but not limited to the following:
</div>
</td>
</tr>
</table>
</div>
</body>
terrenuit
Forum Commoner
Posts: 53
Joined: Tue Jul 08, 2014 2:18 pm

Re: connection header.php

Post by terrenuit »

I have solved my problem
Post Reply