Hi guys,
I need to do something that for a lot of you would be very easy, but for me, that I do not know anything of php language, it is very hard to accomplish.
What I want to do is to make a form field ( which I displayed below) add its details to the notes box after being submitted.
Basically, I want my customers to choose one of the rooms in this cascade menu:
<tr><td>Room*</td><td>
<select name="Room" class="bookingtext">
<option value="">Room...</option>
<option value="Praia de Buzios">Praia de Buzios</option>
<option value="Pirangi">Pirangi</option>
<option value="Praia do Amor">Praia do Amor</option>
<option value="Praia de Ponta Negra">Praia de Ponta Negra</option>
<option value="Baia dos Golfinhos">Baia dos Golfinos</option>
<option value="Praia de Genipabu`">Praia de Genipabu`</option>
<option value="Praia do Meio">Praia do Meio</option>
</select>
</td></tr>
and than, I would like the choice to be shown in the text box.
Can someone tell me, step by step, how to do it?
If necessary, I can post the whole
I need to do something that for a lot of you would be very easy, but for me, that I do not know anything of php language, it is very hard to accomplish.
What I want to do is to make a form field ( which I displayed below) add its details to the notes box after being submitted.
Basically, I want my customers to choose one of the rooms in this cascade menu:
<tr><td>Room*</td><td>
<select name="Room" class="bookingtext">
<option value="">Room...</option>
<option value="Praia de Buzios">Praia de Buzios</option>
<option value="Pirangi">Pirangi</option>
<option value="Praia do Amor">Praia do Amor</option>
<option value="Praia de Ponta Negra">Praia de Ponta Negra</option>
<option value="Baia dos Golfinhos">Baia dos Golfinos</option>
<option value="Praia de Genipabu`">Praia de Genipabu`</option>
<option value="Praia do Meio">Praia do Meio</option>
</select>
</td></tr>
and than, I would like the choice to be shown in the text box.
Can someone tell me, step by step, how to do it?
If necessary, I can post the whole
PHP:
program.
Thank you very much for your support.
Davide78