How to avoid big query in sql
$sql = "INSERT INTO `student_admission` (`adm_date`, `class`, `section`, `monthly_fee`, `monthly_fee_discount`, `name`, `date_of_birth`, `place_of_birth`, `identification_mark`, `cast`, `religion`, `mother_tongue`, `address`, `father_name`, `father_nic_no`, `father_qualification`, `occupation`, `mobile1`, `mobile2`, `whatsapp_no`, `email`, `picture`) VALUES ('{$_POST['adm_date']}', '{$_POST['adm_class']}', '{$_POST['adm_section']}', '{$_POST['adm_monthly_fee']}', '{$_POST['adm_monthly_fee_discount']}', '{$_POST['adm_name']}', '{$_POST['adm_dateofbirth']}', '{$_POST['adm_placeofbirth']}', '{$_POST['adm_identificationmark']}', '{$_POST['adm_cast']}', '{$_POST['adm_religion']}', '{$_POST['adm_mothertongue']}', '{$_POST['adm_address']}', '{$_POST['adm_fathername']}', '{$_POST['adm_fathernicno']}', '{$_POST['adm_fatherqualification']}', '{$_POST['adm_occupation']}', '{$_POST['adm_mobile1']}', '{$_POST['adm_mobile2']}', '{$_POST['adm_whatsappno']}', '{$_POST['adm_email']}', '$img_new_name')"; how i can short it