|
CGI.PM and print table trying to replace this print "<table>\n"; print "<tr><td><input type=\"submit\"></td><td><input type=\"reset\"></ td></tr>\n"; print "</table>\n"; with this print table( TR([ td([submit(),reset()]) ]) ); seems to work but then a new name/value pair for "submit" shows up in the browser address bar ... 13 Apr 2008 15:07
FAQ 9.13 How do I edit my .htpasswd and .htgroup files with Perl? This is an excerpt from the latest version perlfaq9.pod, which comes with the standard Perl distribution. These postings aim to reduce the number of repeated questions as well as allow the community to review and update the answers. The latest version of the complete perlfaq is at http://faq.perl.org . --------... 13 Apr 2008 09:32
FAQ 9.2 My CGI script runs from the command line but not the browser. (500 Server Error) This is an excerpt from the latest version perlfaq9.pod, which comes with the standard Perl distribution. These postings aim to reduce the number of repeated questions as well as allow the community to review and update the answers. The latest version of the complete perlfaq is at http://faq.perl.org . --------... 13 Apr 2008 02:59
FAQ 8.46 What's the difference between require and use? This is an excerpt from the latest version perlfaq8.pod, which comes with the standard Perl distribution. These postings aim to reduce the number of repeated questions as well as allow the community to review and update the answers. The latest version of the complete perlfaq is at http://faq.perl.org . --------... 12 Apr 2008 21:27
global variables in threaded perl programs iloveperl(a)abc.com writes: In the above code it starts two threads in which global variables are set to a value. output of the program 1000 2000 current 0 0.. why does the last print line does not take the value of 1000 or 2000. Because no variables are shared by default. See ... 12 Apr 2008 20:40
FAQ 9.1 What is the correct form of response from a CGI script? This is an excerpt from the latest version perlfaq9.pod, which comes with the standard Perl distribution. These postings aim to reduce the number of repeated questions as well as allow the community to review and update the answers. The latest version of the complete perlfaq is at http://faq.perl.org . --------... 12 Apr 2008 15:05
FAQ 8.48 How do I add the directory my program lives in to the module/library search path? This is an excerpt from the latest version perlfaq8.pod, which comes with the standard Perl distribution. These postings aim to reduce the number of repeated questions as well as allow the community to review and update the answers. The latest version of the complete perlfaq is at http://faq.perl.org . --------... 12 Apr 2008 09:31
Time::HiRes < 1.91 and glibc 2.4 incompatibility A long time ago I found a very peculiar timing bug in my open source performance monitoring tool 'collectl' - I discovered that when glibc went from version 2.3 to 2.4 it changed the time resolution from microseconds to nanoseconds, going from 32 bits to 64 bits. It also tuned out at the time the only one to m... 15 Apr 2008 15:39
FAQ 8.44 How do I tell the difference between errors from the shell and perl? This is an excerpt from the latest version perlfaq8.pod, which comes with the standard Perl distribution. These postings aim to reduce the number of repeated questions as well as allow the community to review and update the answers. The latest version of the complete perlfaq is at http://faq.perl.org . --------... 12 Apr 2008 03:00
FAQ 9.3 How can I get better error messages from a CGI program? This is an excerpt from the latest version perlfaq9.pod, which comes with the standard Perl distribution. These postings aim to reduce the number of repeated questions as well as allow the community to review and update the answers. The latest version of the complete perlfaq is at http://faq.perl.org . --------... 11 Apr 2008 21:27 |