From what I have read - as a newbie - Magic Quotes are evil.
I would like to disable them on my laptop, but am unsure of what I need to do in my php.ini file. Here is the section dealing with Magic Quotes...
; Magic quotes
;
; Magic quotes for incoming GET/POST/Cookie data.
magic_quotes_gpc = On
; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
magic_quotes_runtime = Off
; Use Sybase-style magic quotes (escape ' with '' instead of \').
magic_quotes_sybase = Off
Can someone please explain what all of these lines do?
Thanks,
Amy