I have to pass an ID in tag to two different pages.
My current code is:
<a href="select1.php?id=<?php echo $cval['id']?>">Edit</a>
I need to pass to select1.php and select2.php
Trying to do something like
<a href="select1.php?id=<?php echo $cval['id']?> && select2.php?id=<?php echo $cval['id']?>">Edit</a>
I tried this . But it doesnt solve my issue.