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

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -