<table>
<tr><td>Date</td><td>Job_id</td><td>Active</td>/tr>
<?php
while ($row = mysqli_fetch_assoc($rs_total)) {
?>
<tr>
<td><? echo $row["Date"]; ?></td>
<td> <?php echo "<a href='work.php?ID=".$row."'>".$row."</a>"; ?></td>
<td><? if($row["Active"]==0) echo "Active"; else if ($row["Active"]==2) echo "Completed"; else echo "Not active"; ?></td>
</tr>
<?php
};
?>
</table>
in this code i want to transfer the id on pop up window and get display all detail about that id. please tell me how to do that.`