HI everyone
I have a textbox i have disabled it with a fix value(like in online papers if you solved first question and move to second question first question get disabled now u cant make editing into this).I want something like this.But i dont know how to send a disable box value to next page with post or get..
how i can send this box value to next page
I have a textbox i have disabled it with a fix value(like in online papers if you solved first question and move to second question first question get disabled now u cant make editing into this).I want something like this.But i dont know how to send a disable box value to next page with post or get..
Code:
<input type="text" id="username" value="<?php echo $_SESSION['employee']['username']; ?>" disabled="disabled" />
Comment