php-src/tests/testinclude

6 lines
119 B
Plaintext
Raw Normal View History

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