ramachandrajr has asked for the wisdom of the Perl Monks concerning the following question:
front end
<li> <input type='text' name='mob' placeholder='Phone Number'></li>Back end
my $mob = $q->param("mob"); $mob =~ s/[:;$%&@<>?]//gi; #dbi logins here print "Content-Type: text/html\n\n"; print "<html><body>\n"; print $mob; print "</html></body>\n";
|
|---|