in reply to Question about this simple CGI

#ffffff is not correct syntax. Maybe change:
$q->start_html( -title => "Add user", -bgcolor => #ffffff);

to:

$q->start_html( -title => "Add user", -bgcolor => 0xffffff);

Replies are listed 'Best First'.
Re^2: Question about this simple CGI
by Chaotic Jarod (Novice) on Jul 17, 2013 at 20:00 UTC
    That fixed that, not it's telling me that $day and $number are both unitialized, any clue why?
      it's telling me that $day and $number are both unitialized, any clue why?

      They are not being sent from your html page probably. You can assign defaults like this;

      my $name = $q->param('name') || 'noname'; my $day = $q->param('day') || 'noday'; my $number = $q->param('number') || 'nonumber';

      The elements after the print line should be comma separated and you shouldn't be printing after the end_html

      print $q->header, $q->start_html( -title => "Add user", -bgcolor => "#ffffff"), $q->p("Data submitted"), $q->tt("$name<br/>$day<br/>$number"), $q->end_html;

      And you may wish to add this while developing to see any errors in the browser.

      use CGI::Carp 'fatalsToBrowser';
      poj