- or download this
<!DOCTYPE html>
<html>
...
</body>
</html>
- or download this
#!/usr/bin/env perl
use strict;
...
$template->process($file, $vars)
or die "*MY* template process failed: ", $template->error(), "\n";
- or download this
1proj/
---cgi-bin/
...
2 directories, 8 files
- or download this
#!/usr/bin/env perl
use strict;
...
$template->process($file, $vars)
or die "*MY* template process failed: ", $template->error(), "\n";
- or download this
http://localhost:8000/cgi-bin/create_form.pl
- or download this
http://localhost:8000/cgi-bin/simple_cgi.pl
- or download this
#!/usr/bin/env perl
use strict;
...
$cgi->start_html,
$cgi->div('hello'),
$cgi->end_html;