how post and get "&" symbol in url? in php. please help me ........
+4
A:
Encode data with urlencode. It will be decoded automatically when parsed into $_POST.
David Dorward
2010-01-21 06:53:27
+2
A:
use urldecode
http://www.php.net/manual/en/function.urldecode.php
$searchword = urldecode($_GET['searchword']);
Haim Evgi
2010-01-21 07:54:03
output: "G".how get all values?
Murugesh
2010-01-21 08:19:10
if u print $_GET['searchword'] , what u get ?
Haim Evgi
2010-01-21 08:53:21
Haim Evgi
2010-01-21 09:04:17
`+` in a query string is equivalent to `%20` according to the specs.
Ignacio Vazquez-Abrams
2010-01-21 08:14:04
form action="get" - url passing value is G+%26+G+Tours.how i get full value?
Murugesh
2010-01-21 08:18:25