Re: [PHP] how to fight backslash in char variable???

2002-08-20 Thread Jason Wong
On Tuesday 20 August 2002 20:13, Maris Kalnins wrote: > Hi guys! > > Situation: > > $intext = "blablabla ' blablabla"; > then this $intext is passed to out.php (as parameter out.php?intext=...) > > the problem is that from out.php I need to echo this $intext but I get: > > blablabla \' blablabla >

Re: [PHP] how to fight backslash in char variable???

2002-08-20 Thread Michael Sims
On Tue, 20 Aug 2002 15:13:53 +0300, you wrote: >the problem is that from out.php I need to echo this $intext but I get: > >blablabla \' blablabla > >the question is.. how to fight this backslash out of there? The magic_quotes_gpc setting is enabled on your server. If you have access to the serv

[PHP] how to fight backslash in char variable???

2002-08-20 Thread Maris Kalnins
Hi guys! Situation: $intext = "blablabla ' blablabla"; then this $intext is passed to out.php (as parameter out.php?intext=...) the problem is that from out.php I need to echo this $intext but I get: blablabla \' blablabla the question is.. how to fight this backslash out of there? Thanks,