Hi....
I have a code that looks like this:
$k = "abcdef";
$length = strlen($k);
for ($a=$length; $a>=0; $a--)
{echo "$a[$k]";
}
When I run this code on Windows, it works fine. It echoed out fedcba, but when I run in on Linux, before it echoed out, it stated "Uninitialized string offset ........".
Why does this happen? Anyone..??