Hi all!
I've written a script that works perfectly on my web server which is Apache running PHP (I don't know which versions, but I can find out if needed).
Anyway, I wanted to work with it offline and reinstalled PHP4 on my computer. It works great with MySQL and IIS5 except for the fact that it processes the script differently compared with how it's processed on the server. I get several errors when PHP on my local webserver processes the code.
For example these:
Warning: Undefined variable: set_selected_order in C:...\quotes.php on line 116
and this:
Warning</b>: Undefined offset: 1 in <b>C:...\quotes.php
which is the result of the first error.
($set_selected_order is used to pick a value from an array, example: $arrayname[$set_selected_order])
My code must be okay of it works on the Apache web server but why doesn't it work on my local IIS?