http://www.perlmonks.org?node_id=978653


in reply to Re^4: How to insert the text written in textarea tag in mysql database in perl.
in thread How to insert the text written in textarea tag in mysql database in perl.

For readability, you should put code (and preferrably output) inside <code>...</code> tags, or <c>...</c> if you don't like typing so much.

<textarea wrap="physical" id="resume" name="resume"></textarea>
$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'), };