How to pass on a value as parameter via url to another page
If you are working in a php file such as a template, you can use $_GET to extract the url variables. For example, if your url was mydomain.com/page?color=blue you would print it on screen by: <?php echo $_GET[‘color’]; ?> This would print “blue”. So to make a conditional statement out of this, you could do: … Read more