I have coded a script that worked fine on redhat linux 7.2 with php 4.12. I installed PHP 4.3 on 2 windows 2k systems, 1 with IIS and another with apache 2.0. Both give me the same problem.
Heres an example of the problem
the included file (test.php):
<?php
$c['test'] = 'value';
?>
And the main script:
<?php
include "test.php";
print $c['test'];
?>
The script outputs nothing at all, and yes, I tried including the full path and that did not work either. I tried defining $c as global to see if that might fix it but it didn't. Again, this only happens on windows with php 4.3. Any help would be appreciated.