Do you know what's the problem of this SQL code? THanks.
if (move_uploaded_file($_FILES['resume']['tmp_name'], 'uploads/'.$_FILES['resume']['name'])){
$insert_data3 = "INSERT into applicant_other_details(`position`,`learn_from`,`work_availability`,`resume`,`date_submitted`)
VALUES ('".$_POST['app_position']."','".$about_job."','".$work_avail."','uploads/".$_FILES['resume']['name']."','".CURDATE()."')";
mysql_query($insert_data3) or die(mysql_error());
}