I tried to use GET method in php, but the url has home%20phone as query parameter
When i tried to read it using
<?php echo $_GET['home%20phone']; ?>
it is not working..So, how to read variables like this.
thanks.
I tried to use GET method in php, but the url has home%20phone as query parameter
When i tried to read it using
<?php echo $_GET['home%20phone']; ?>
it is not working..So, how to read variables like this.
thanks.
Do a var_dump($_GET)
to see the keys the variables are mapped to.