##
$sql_query = <<'__SQL__';
INSERT INTO posted_resumes
(name, email_id, contact_no, comments, date)
VALUES (?, ?, ?, ?, CURDATE());
__SQL__
my $bind_params = {
1 => $query->param('name'),
2 => $query->param('emailid')
3 => $query->param('contactno'),
4 => $query->param('resume'),
};