I want to send multiple variables in a query string like this:
<a href="deleteProduct.php?id=11?Mid='A'"></a>
and then I want to get these on next page like this :
$del=$_GET['id'];
$menu=$_GET['Mid'];
But it gives me error that Mid is undefined.
I will be grateful if , some help me .
Thanks in advance
isset($_GET['Mid'])before consuming$_GET['Mid']... isset()?Mid=foo&id&other=true. Then $_GET['Mid'] will be 'foo',$_GET['id']will benulland$_GET['other']will be 'true';