Page 1 of 1

I need some help with PHP

Posted: Thu Aug 12, 2004 3:33 am
by TR1U
Hi!! i've got a little problem. I want to erase the " \ ". and the " (shift + 2). but i don't know if shift + 2 works on an amerikan keyboard.

if somebody could help me, what i think that many people can do in this forum, please answer me soon.

thx to everyone

Posted: Thu Aug 12, 2004 7:06 am
by hawleyjr
Excuse me for being naive; but when you say (shift-2) are you talking about the at sign? (@)

Posted: Thu Aug 12, 2004 10:17 am
by d_d
I presume the " which is shift+2 on a Uk keyboard. What difference the keyboard makes I have no idea, Couldn't you just do a str_replace?
$text = str_replace('\'','',$text);
$text = str_replace('"','',$text);