Posted by Martin Lemke on 12/04/07 01:26
Dave schrieb:
> <h1><? include "test-include.php"; ?></h1>
include does not do any output.
Test this:
test-include.php:
<?php
$test="'test-include.php' has been included";
?>
Your test script:
<?php
include_once('test-include.php');
print "<p>$test</p>";
?>
If output of yout test script ist not: <p>'test-include.php' has been
included</p>, then test-include.php hast not been included, but I dont
think so.
Martin
Navigation:
[Reply to this message]
|