Hi,
Am having only one check box.
I wants to pass checkbox values through hyperlink. I needs to know, either it is an checked checkbox or an unchecked uncheckbox. Based upon checked checkbox, i carry out my remaining coding part.
echo "<br>";
echo "<table>";
echo "<tr><td colspan='2'><font color='blue'><b>download PDF document:</b></td></tr>";
echo "<tr><td><b>Approve :</b><input type=checkbox name=chk value=no></td><td><a target ='_blank' href='download.php?chk=no&pid=".base64_encode($id)."'>Approve it</a></td></tr>";
echo "</table>";
Please give me the solution to sort out my problem.thanks