ay" <[EMAIL PROTECTED]>; "Php-General"
<[EMAIL PROTECTED]>
Sent: Wednesday, September 12, 2001 3:08 AM
Subject: RE: [PHP] Re: problem with form values
> Heh, we seem to have a bit of a problem with communicating with each
other..
> :)
>
> What I ment wi
Heh, we seem to have a bit of a problem with communicating with each other..
:)
What I ment with the question is that how can I do something to the string
before the form sends information to the next page? So can I somehow modify
strings after pressing submit but before next page? Something like
i would say do this
urlencode the string (it should use %22 or something for the quote marks)
then un encode on the recieving page
--
one thing you might try is this
$sql = 'SELECT * FROM whatever WHERE';
while ( $quotes = explode('"', $Keywords) ) {
$q = 0;
$s = 0;
This is what my form returns with search '"great port"':
http://domain/file.php4?Parent=1&Keyword=\
and this with search 'great port' (no quotas):
http://domain/file.php4?Parent=1&Keyword=great
port&Name=&Province=---&Submit=Search&Type=text
I need to get quotas to the keyword-field, so I can cr
4 matches
Mail list logo