is the $_GET exists?
-
Hi, in PHP, how can I check if the QueryString $_GER 1. Exists in the url. 2. Exists with value 3. Exists without value Thanks, Jassim[^]
Technology News @ www.JassimRahma.com
-
Hi, in PHP, how can I check if the QueryString $_GER 1. Exists in the url. 2. Exists with value 3. Exists without value Thanks, Jassim[^]
Technology News @ www.JassimRahma.com
-
Hi, in PHP, how can I check if the QueryString $_GER 1. Exists in the url. 2. Exists with value 3. Exists without value Thanks, Jassim[^]
Technology News @ www.JassimRahma.com
This article may help: http://www.codeproject.com/Tips/677867/Code-Experiment-on-\_GET
-
Hi, in PHP, how can I check if the QueryString $_GER 1. Exists in the url. 2. Exists with value 3. Exists without value Thanks, Jassim[^]
Technology News @ www.JassimRahma.com
if the url has "http://www.example.com/index.php?solution=solved" You can check: if(isset($_GET['solution'])) echo 'its set ;)
And the value of "solution" is: ' . $_GET['solution']; else echo 'NOT set! :(';