Im trying to add a new option in the attendance form. I've hardcoded a new question in calendar_rsvp_form.php after {vb:raw rsvp_form_responses}
PHP Code:
<vb:if condition="is_member_of($bbuserinfo, 173)">
Are you going to stream?
<select name="doStream">
<option value="0">No</option>
<option value="1">Yes</option>
</select>
</vb:if>
I've added a new field in the attendance table called "do_stream". Now I'm trying to deal with this option to save the selected value into the do_stream field in the table database. I've been looking around when I reach the file
calendar_getday_event.php I think I need to write in the database from here.
Can someone guides me a bit about this?
Thank you and I'm sorry for my english.