[Solved] How to display data using hyperlink in php [closed]


It looks like you’re almost there; you’re just looking for the wrong variables:

if (isset($_GET['ID'])) {
    $id = $_GET['ID'];                     
    if( $id!= NULL) {
    ....

You’re passing the variable in as ID, so you need to look for that in $_GET.

0

solved How to display data using hyperlink in php [closed]