This is a discussion on should query string followed by a file name? within the PHP General forums, part of the PHP Programming Forums category; When we google for some keywords, the current URL will become http://www.google.com/search?hl=en&q=...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
When we google for some keywords, the current URL will become
http://www.google.com/search?hl=en&q=query+string My question is should the query string (?hl=en) always followed by a file name? For example, http://www.google.com/search.jsp?hl=en&q=query+string. Because my understanding is to query the query string from the file, in this case, search.jsp. please advise. thanks!! |
|
|||
|
On 12 Aug 2005 11:02:20 -0700, jrefactors@hotmail.com wrote or quoted
: >When we google for some keywords, the current URL will become >http://www.google.com/search?hl=en&q=query+string > >My question is should the query string (?hl=en) always followed >by a file name? there is no filename involved. This is a CGI query. After the ? come pairs of parm=value url-encoded to handle awkward chars like space and + see http://mindprod.com/jgloss/cgi.html http://mindprod.com/jgloss/htmlcheat.html#FORMS http://mindprod.com/jgloss/urlencoded.html |