Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: How to validate the form in CGI

by mkirank (Chaplain)
on Mar 08, 2005 at 12:04 UTC ( [id://437506]=note: print w/replies, xml ) Need Help??


in reply to How to validate the form in CGI

Check out CGI Docs

#!perl use CGI qw(:standard); use strict ; use warnings; my $query = new CGI; print $query->header; print start_html(-title=>"hello world", -bgcolor=>"#BOE0E6" ); my $js =<<JS; <SCRIPT Language="javascript"> function check_answer() { if(document.hello.empcode.value==false) { alert("Please enter the Software"); document.hello.empcode.focus(); return false; } return true; } </SCRIPT> JS print "$js \n\n"; print $query->startform(-method=>"POST",-action=>"mycgi.cgi",-onSubmit +=>'return check_answer()',-name=>'hello'); print $query->textfield(-name=>'empcode', -size=>20, -maxlength=>20); print $query->submit(-name=>'submit', -value=>'submit'); print $query->reset ; print $query->endform;

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://437506]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (7)
As of 2024-04-19 07:36 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found