Passing values to another php page using anchor tag -
i try pass value of personid list.php delete.php. using anchor tag
here code :
<a href = "delete.php?pid = <?php echo $row['personid']; ?>"> delete </a>
the value passed correctly somehow don't redirected delete.php can note problem in above line?
get rid of space in url:
<a href="delete.php?pid=<?php echo $row['personid']; ?>"> delete </a>
Comments
Post a Comment