![]() |
|
|
+ Search |
![]()
|
Apr 1st, 2000 07:30
Paul Gumerman, Data Wizard,
Yes, any of the following will work:
$incfile = '/data/sites/www/php/file1.inc';
include($incfile);
or
$language = 'english';
include("/data/sites/$language/php/file2.inc");
Note the use of double quotes above ... if you use single quotes, it
won't parse the string.