web
Option 1 oop
mod

Project name:

#!/usr/bin/perl -w use CGI; $form = CGI->new(); $web = $form->param('web'); $gui = $form->param('gui'); $oop = $form->param('oop'); $mod = $form->param('mod'); $proj = $form->param('projectname'); # Print form header. print $form->header(); print $form->start_html(title=>'This is the title', -BGCOLOR=>'white'); print "\n"; print "Estimated completion time for $proj: 5 March, 2025."; print "

\n"; # Paragraph # End HTML form. print $form->end_html();