I try to pass value of PersonID from list.php to Delete.php. using anchor tag
Here is my code :
<A HREF = "Delete.php?PID = <?php echo $row['PersonID']; ?>"> Delete </A>
The value is passed correctly but somehow I don't get redirected to Delete.php can anyone note the problem in the above line?
Code is very well written. I don't know about your database fields and your php file naming conventions but this might help you.
It is same as above but might be it'll helpful. Check your file name delete.php as same in your directory. check your database field name. Is it same you are using ?
Delete the spaces before and after the '=':
Get rid of the space in your URL:
If you have this:
No more problem in the line. You should check other code.