I have an app I built on a PHP/Apache machine but now I have migrated development to a PHP windows box.
I am noticing a lot of things no longer work. Most importantly to pass variable between forms and scripts I now have to access the using
$_SERVER['DOCUMENT_ROOT']
or form a from like
$_POST["title"]
on the apache box all I had to do was use
$DOCUMENT_ROOT
or
$title
My question is what php setting is causing this difference and how could I go about changing it.
I tried using the ini_set() function but it didnt sem to work
Thanks for any help