I have some basic logic here and im getting crazy how can do this. what I want is to submit my form when the hyperlink is being click. here sample code:
<form id="myForm" action="for-filtering.php">
<input type="hidden" name="fname" value="<?php echo $account_fname; ?>">
<input type="submit" id="submit" style="display:none;"/>
<a onclick='myFunction()' href='reponse-to-customer.php?id=".$cus_id."'>$firstname_email</a>
</form>
<script>
function myFunction()
{
document.getElementById("myForm").submit();
}
</script>
I know Sir you can improve this thnx.. ^^