php-src/tests/testinclude

5 lines
117 B
Plaintext
Raw Normal View History

1999-04-07 21:05:13 +00:00
<?
print "Before include...\n";
$retval = include("testarray");
print "After include, include returned $retval\n";
?>