Just looking for some advice on something that is bugging me. Please bear in mind I am a PHP noob 🙂
I am passing a variable in the url to my WP index page like so:
<a href="https://wordpress.stackexchange.com/questions/23315/<?php bloginfo("url');?>/?do=thing">Thing</a>
I am the catching that variable, and using it to show content like so:
<?php $do_that = $_GET["do"]; if($do_that == 'thing') : ?> etc
Naturally I am getting debug errors when the variable is not passed 🙂
"Undefined index: do"
My question is what am I missing wrong? Obvious I spose?
Also is this bad practice?