I have a code here where the referral name of each person has a hyperlink and when i click it, it will go to pick.php. For example I click "TEST7 TEST7", how do I pass the Lead No. of "TEST7 TEST7" which is LEA3330 to pick.php?
part of code in index.php
//print data in the table
echo '
<tr>
<td>'.$row['lead_no'].'</td>
<td><a href="pick.php"> '.$row['firstname'].' '.$row['lastname'].'</a></td>
</tr>
';