My code works just nicely on Linux, but when I move PHP code to Windows, everything breaks. Example:
<?php
//First, we need to load files into an array:
$dirpath = "c:\chunk\";
$dirpath2 = "c:\chunk";
?>
generates the following error:
PHP Parse error: parse error, unexpected T_STRING in C:\Directory\test.php on line 4
My question is why does it do this? My code is blowing up with all the d*mned backslashes...