Quote:
Originally Posted by paul41598
wow that worked! Thankyou so much, I'm sure I'll have more questions later to be asked now that I got past this part. Thanks again Danny
what about a checkbox variable sir? How do I pass that on?
|
Checkboxes are held in arrays so it would be something like:
HTML Code:
<input type="checkbox" name="options[]" value="x">
<input type="checkbox" name="options[]" value="y">
<input type="checkbox" name="options[]" value="y">
The php code would be:
PHP Code:
$vbulletin->input->clean_gpc('p', 'options', TYPE_ARRAY));
And $vbulletin->GPC['options'] would be an array of all the values that were checked.