Re: [PHP] mysql_fetch_* and stripslashes

2003-03-26 Thread Aaron Dalton
*blushes deeply* It turns out my old php3.ini was still being loaded which had magic_quotes turned ON! Turning magic_quotes off of course fixed the problem. My thanks for your patience. Cheers! On Wed, 26 Mar 2003, Tom Rogers wrote: > Hi, > > Wednesday, March 26, 2003, 9:10:26 PM, you wrote:

Re: [PHP] mysql_fetch_* and stripslashes

2003-03-26 Thread Tom Rogers
Hi, Wednesday, March 26, 2003, 9:10:26 PM, you wrote: AD> Why is it that PHP does not automatically unescape data retrieved from a AD> mySQL query? It seems to me that this should be the default behaviour as AD> the bulk of what PHP web scripts do is display said data. I'm just AD> wondering if

[PHP] mysql_fetch_* and stripslashes

2003-03-26 Thread Aaron Dalton
Why is it that PHP does not automatically unescape data retrieved from a mySQL query? It seems to me that this should be the default behaviour as the bulk of what PHP web scripts do is display said data. I'm just wondering if I'm missing some command or optional argument to make this happen. As