Deib has asked for the wisdom of the Perl Monks concerning the following question:
my $query = new CGI; print $query->header; print $query->start_html("Verificador de Ligas"); print "<H1> Verificación de ligas</H1>\n"; #the whole process code goes here and start running automatically. print "Paginas verificadas: $ahora<br><br>"; print "Paginas no encontradas: $urlsmuertas<br>"; foreach(@dead_urls_to_keep) {print "$_<br>";} print "<br>Ligas con errores: $links_failed<br>"; foreach(@dead_links_to_keep) {print "$_<br>";} print $query->end_html;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Implementing a progress bar on CGI
by Ovid (Cardinal) on Mar 16, 2005 at 21:46 UTC | |
by Deib (Sexton) on Mar 17, 2005 at 00:12 UTC | |
by Ovid (Cardinal) on Mar 17, 2005 at 00:34 UTC | |
|
Re: Implementing a progress bar on CGI
by FitTrend (Pilgrim) on Mar 16, 2005 at 21:57 UTC |