Does anyone know the PHP code to accomplish the following action?
When submitting form A, if the value entered in form A field “Qualified” equals “No”,
Then form A field “Client ID” = the value of Recordset1 field “Client ID”.
Dynamic form fields.
Moderator: General Moderators
- Sevengraff
- Forum Contributor
- Posts: 232
- Joined: Thu Apr 25, 2002 9:34 pm
- Location: California USA
- Contact:
Code: Select all
if( $_POST['qualified'] == 'No' ) {
echo '<input type="text" name="client id" value=" ' . getinfo() . '">';
}