EchoAngel has asked for the wisdom of the Perl Monks concerning the following question:
So basicly, i see nothing on the screen. When I view the source code, the cgi script prints everything before this section. How do I overcome this? Should I go for another language? my Hash has a lot of process datamy %HASHDATAFROMLIBRARYFILE = MONKEY::MONKS($libraryFile); # FIRST ENTER BOX printf ("%-20s" , "Enter Animal : "); print '<select name="CellName" onChange="document.asdf.submit();">'; foreach $keys (sort keys %{$HASHDATAFROMLIBRARYFILE{TIMING}}) { print '<option value="' . $keys . '">' . $keys . '</option>' if ($ +FORM{CellName} ne $keys); print '<option value="' . $keys . '" selected >' . $keys . '</optio +n>' if ($FORM{CellName} eq $keys); } print '</select><br></br>';
|
|---|