|
Posted by vinnie on 06/08/07 15:30
On Jun 8, 11:07 am, "Ben Sehara" <seh...@hotmail.com> wrote:
> Hi,
>
> I want to include three php files in index.php file like the code below. But
> it always shows up only two, any two of the three, any order.
>
> <tr>
> <td><?php include ("includes/documents.php"); ?> </td>
> </tr>
> <tr>
> <td><?php include ("includes/locations.php"); ?> </td>
> </tr>
> <tr>
> <td><?php include ("includes/status.php"); ?> </td>
> </tr>
>
> Can anyone help me out?
>
> Ben
Hi Ben,
the include() statement works in the same way of require(), with the
difference that require() is executed the first time the statement is
parsed, while include() is evluated each time the statement is
executed.
you may wanna work in this way:
<?php
if (variable == true)
{
include('file.inc');
}
else
{
echo 'hello!';
}
?>
bye,
V.
[Back to original message]
|