I'm working on a server that is running PHP4.
I'd like to upgrade this so I can use the PHP5 code I have already.
What kind, if any, problems will I have with the existing PHP code base?
I see:
Local Master
magic_quotes_gp c On On
magic_quotes_ru ntime Off Off
I'm not sure what that means. I think that means that anything coming in
on $_REQUEST is backslashed and I'm thinking that probably won't play
well with PDO. If I turn that off what kind of failure could I see in
the existing code? Is that only a problem in that single quotes will be
backslashed in the data? Or can I have runtime crashes?
Jeff
I'd like to upgrade this so I can use the PHP5 code I have already.
What kind, if any, problems will I have with the existing PHP code base?
I see:
Local Master
magic_quotes_gp c On On
magic_quotes_ru ntime Off Off
I'm not sure what that means. I think that means that anything coming in
on $_REQUEST is backslashed and I'm thinking that probably won't play
well with PDO. If I turn that off what kind of failure could I see in
the existing code? Is that only a problem in that single quotes will be
backslashed in the data? Or can I have runtime crashes?
Jeff
Comment