"Marek Kilimajer" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> The correct way is:
> In validate.php:
> if(error) {
> if(magic_quotes) stripslashes();
> urlencode();
> } else {
> INSERT INTO ...
> }
>
> In form.php:
> // urldecode() is not needed, GET variables are already decoded
The correct way is:
In validate.php:
if(error) {
if(magic_quotes) stripslashes();
urlencode();
} else {
INSERT INTO ...
}
In form.php:
// urldecode() is not needed, GET variables are already decoded
if(magic_quotes) stripslashes();
Arcadius A. wrote:
Hello!
I have a form w
- Original Message -
From: "Arcadius A." <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, July 09, 2003 12:50 PM
Subject: [PHP] TextArea vs. URLEncode/URLDecode/quotes
(snip)
> So, My question is: What's the best way to get the value of a te
Hello!
I have a form with a textarea...
When the user submits the form, I validate the form on another page.. and in
case the data are not valid,
I redirect the user back to the form, passing all the info filled in
previously in the URL, then I easily display the values in the form
again For
4 matches
Mail list logo