How do I send a get http request which contains sql query with LIKE %item% clause? I've read about percent-encoding, but don't know yet about how do I handle such a requests.

% sign is handled upon percent-encoding so it breaks sql query.

Help!

link|improve this question

What do you mean by "% sign is handled upon percent signing"? I don't understand. – Ben Lee Feb 22 at 8:03
@BenLee I meant percent-encoding. – helicera Feb 22 at 8:05
2  
You're sending SQL over HTTP, presumably to be executed??? Oh, you've tagged this question with php. My mistake, carry on. – ta.speot.is Feb 22 at 8:07
feedback

2 Answers

up vote 1 down vote accepted

The % sign is encoded as %25 in URLs - is that what you are asking?

For example: http://www.google.com/?q=%25

link|improve this answer
feedback

Just send the query portion in the query string part of the GET request. The % signs will be URL-encoded by the browser to send to the server, and PHP will urldecode them at the other end. The real question is WHY IN GOD'S NAME WOULD YOU DO SUCH A THING? It's terribly insecure and leaves you open to SQL injection attacks!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.