diff options
author | Sashi20 | 2023-01-02 15:11:11 +0530 |
---|---|---|
committer | Sashi20 | 2023-01-02 15:11:11 +0530 |
commit | 09bac1a648ae5e1573a89d06f64b2505c90f7c0e (patch) | |
tree | 6472d54e0813b4df622c8053c6a391fab464b4f1 | |
parent | 82d124d177ae35da90fab83c48660d798bdf0858 (diff) | |
download | fellowship_testimonials-09bac1a648ae5e1573a89d06f64b2505c90f7c0e.tar.gz fellowship_testimonials-09bac1a648ae5e1573a89d06f64b2505c90f7c0e.tar.bz2 fellowship_testimonials-09bac1a648ae5e1573a89d06f64b2505c90f7c0e.zip |
Update insert query
-rw-r--r-- | vle_registration.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vle_registration.inc b/vle_registration.inc index 6bf5618..55cd4d8 100644 --- a/vle_registration.inc +++ b/vle_registration.inc @@ -428,7 +428,7 @@ function animation_hackathon_vle_registration_form_submit($form, &$form_state){ } else{ $query = "INSERT INTO animation_hackathon_vle_registration - (country, state, district, block_name, csc_id team_size, team_member_1_name, team_member_1_email, team_member_1_contact, team_member_1_gender, team_member_1_category, team_member_1_institution, team_member_2_name, team_member_2_email, team_member_2_contact, team_member_2_gender, team_member_2_category, team_member_2_institution, know_synfig, other_softwares_used, information_about_event, about_team, terms_and_condition, registration_timestamp) VALUES (:country, :state, :district, :block_name, :csc_id, :team_size, :team_member_1_name, :team_member_1_email, :team_member_1_contact, :team_member_1_gender, :team_member_1_category, :team_member_1_institution, :team_member_2_name, :team_member_2_email, :team_member_2_contact, :team_member_2_gender, :team_member_2_category, :team_member_2_institution, :know_synfig, :other_softwares_used, :information_about_event, :about_team, :terms_and_condition, :registration_timestamp)"; + (country, state, district, block_name, csc_id, team_size, team_member_1_name, team_member_1_email, team_member_1_contact, team_member_1_gender, team_member_1_category, team_member_1_institution, team_member_2_name, team_member_2_email, team_member_2_contact, team_member_2_gender, team_member_2_category, team_member_2_institution, know_synfig, other_softwares_used, information_about_event, about_team, terms_and_condition, registration_timestamp) VALUES (:country, :state, :district, :block_name, :csc_id, :team_size, :team_member_1_name, :team_member_1_email, :team_member_1_contact, :team_member_1_gender, :team_member_1_category, :team_member_1_institution, :team_member_2_name, :team_member_2_email, :team_member_2_contact, :team_member_2_gender, :team_member_2_category, :team_member_2_institution, :know_synfig, :other_softwares_used, :information_about_event, :about_team, :terms_and_condition, :registration_timestamp)"; $args = array( ":country" => $v['country'], ":state" => $v['all_state'], |