Tables

2004-01-22 Thread Rod
I am looking for an example of doing tables with cgi.pm. I have done some looking but have not found any good examples. All my code so far uses OOP. The examples I did find did not use OOP. thanks, Rod. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

LWP get with no cache

2004-01-22 Thread J. Alejandro Ceballos Z.
I created a cron job that gets a page using LWP::Simple, but everytime it runs via cron, it sends me the results generated when I called directly; like if the page was called from memory or from a cache, not from the actual one. Is there any way to specify not to store the page results in a

RE: LWP get with no cache

2004-01-22 Thread Bob Showalter
J. Alejandro Ceballos Z. wrote: I created a cron job that gets a page using LWP::Simple, but everytime it runs via cron, it sends me the results generated when I called directly; like if the page was called from memory or from a cache, not from the actual one. Is there any way

Re: LWP get with no cache (code)

2004-01-22 Thread J. Alejandro Ceballos Z.
#!/usr/bin/perl # # Load modules use CGI::Carp qw(fatalsToBrowser); use LWP::Simple; use integer; # # Read Input ReadInput(*cInput); # set results $cResult = ''; $cBanxicoPage = get(http://www.banxico.com.mx/anuncios_indicadores/indicadores.jsp;); # change the page into plain text

Re: LWP get with no cache (code)

2004-01-22 Thread Randal L. Schwartz
J == J Alejandro Ceballos Z [EMAIL PROTECTED] writes: J #!/usr/bin/perl J # J # Load modules J use CGI::Carp qw(fatalsToBrowser); J use LWP::Simple; J use integer; Huh? Why? J # J # Read Input J ReadInput(*cInput); Eeek! use CGI. use CGI. use CGI. Not this stuff. I didn't read any

RE: Tables

2004-01-22 Thread Charles K. Clarkson
Rod [EMAIL PROTECTED] wrote: : : I am looking for an example of doing tables with cgi.pm. : : I have done some looking but have not found any good : examples. All my code so far uses OOP. The examples I : did find did not use OOP. I don't really use tables much any longer, but if you

RE: Tables

2004-01-22 Thread Charles K. Clarkson
Chris Mortimore [EMAIL PROTECTED] wrote: : : Charles [EMAIL PROTECTED] replies: : : I don't really use tables much any longer, but if : you could send me an example you think is good, I could : translate from function oriented to OO and clean it up : a bit. Or you could just send a link.