I need to pass parameter to the form. But user should not enter the parameter through <input> . The parameter is a constant.
How to pass such parameter through the form?
$parameter = "thevalue"
<input type="hidden" value="<?php echo $parameter; ?>" name="fieldname">