Sorry,
I didn't mean it quite like that. After the user presses submit
$string = htmlentities($string);
// now, do whatever with the string
J
----- Original Message -----
From: Niklas Lampén
To: James Holloway ; Php-General
Sent: Wednesday, September 12, 2001 9:52 AM
Subject: RE: problem with form values
How to do anything to the strings in php BEFORE the form is sent?
Niklas
-----Original Message-----
From: James Holloway [mailto:[EMAIL PROTECTED]]
Sent: 12. syyskuuta 2001 11:28
To: Niklas lampén
Subject: Re: problem with form values
Hi Niklas,
use htmlentities() or htmlspecialchars() on the string before the form is
sent. See the manual for more info.
James
----- Original Message -----
From: Niklas lampén
Newsgroups: php.general
To: Php-General
Sent: Wednesday, September 12, 2001 8:32 AM
Subject: problem with form values
If a user enters a quota ( " ) to a form field and sends it, the page trying
to process values gets only a backslash ( \ ). No matter if I use GET or
POST. How to get the right kind of a value?
Niklas