Page 1 of 1

[RESOLVED]Data transfer worked in 4.4.4 not working in 5.2.3

Posted: Wed Aug 15, 2007 8:21 am
by gmrobert
I am passing data from an embedded device using Content-Type = multipart/form-data.

My data passed/parced nicely into $ variables when the server ran with PHP 4.4.4 but now that it is upgraded to 5.2.3 none of the data is passing.

I am wondering if I need to change an ini setting.

To see my PHP settings try this link for phpinfo():
http://workorders.body-pro.com/dumpPHPInfo.php

Thanks

Greg

Posted: Wed Aug 15, 2007 8:28 am
by miro_igov
How you access your variables?

$_REQUEST['something'] or $something ? Could be the register_globals = Off.

Posted: Wed Aug 15, 2007 10:57 am
by gmrobert
Yep that's the issue.

just used: import_request_variables ( string $types [, string $prefix] )

to bring them into the global variable space.

Thanks

Greg