Ask a Question related to PHP Development, Design and Development.
-
Yves Arsenault #1
Form CheckBox question
Hello,
I have this in my form.... the checkUnCheck(this); will uncheck values 1,2,3
if None is chosen... Now when I submit this form, the output I get from
$Avail is the word Array and not the actual content.... ('1,2,3' if I choose
1,2,3)
<td>
<input type="Checkbox" name="Avail[]" value="1"
onclick="checkUnCheck(this);">1
<input type="Checkbox" name="Avail[]" value="2"
onclick="checkUnCheck(this);">2
<input type="Checkbox" name="Avail[]" value="2"
onclick="checkUnCheck(this);">3
<input type="Checkbox" name="Avail[]" value=""
onclick="checkUnCheck(this);">None
</td>
Am I missing something??
And no, I'm not a very experienced PHP developer.
:-)
Yves Arsenault
Carrefour Infotech
5,promenade Acadian
Charlottetown, IPE
C1C 1M2
[email]yves@carrefour.peicaps.org[/email]
(902)368-1895 ext.242
ICQ #117650823
Yves Arsenault Guest
-
CheckBox required on form?
I have a form, and we need to have a checkbox that the user is required to check. Basically saying they read the disclaimer. Is there a way to... -
How do I use the form checkbox value?
I'm creating a form that has multiple checkboxes. I want to use ActionScript to update a text box/area with the values each checkbox as the checkbox... -
Flash Form & Checkbox
I'm having trouble changing this listbox code to checkboxes instead. Can you help? <cfselect name="binderyID" label = "Bindery Type"... -
Checkbox value in MX7 Flash Form
I am testing multi-tab forms in MX7 using the last example from the HTML documentation for the cfformgroup tag. The cfdump just shows whether each... -
Yes/No checkbox in the form
I have a field called action in a table, to check if something requires action the user must check the box. The field in the table is defined as a... -
Rodrigo Webler #2
Re:Form CheckBox question
If you've echo-ed or printed an Array value, yes, you'll get 'Array' as
result, try to var_dump the value, and check if it isn't all well.
Rodrigo
Rodrigo Webler Guest



Reply With Quote

