Re: Perl - charts/graphs??

2001-09-17 Thread randy Peterman
open (BOOK, "Programming Web Graphics with Perl and GNU software By Shawn P. Wallace" -published => "O'reilly.") or die "I don't have enough money";. Then you could search for PerlMagick, or the module on CPAN called GD.pm. Randy Peterman &quo

Re: Underline

2001-09-13 Thread randy Peterman
I know everything. OK, not really, in fact I don't even know what format you are putting the document in. If you can tell us what format you are putting it in, someone may be able to help you. if its HTML you would surround the text with text to get underlined text. Give us some details.

Re: Displaying the output of a system command in HTML

2001-08-27 Thread randy Peterman
ate through the Array for each value for($i = 0;$i < @Commands;$i++){ print qq|Commands[$i]|; } print qq||; Randy Peterman "Ackim Chisha" <[EMAIL PROTECTED]> wrote in message 033c01c12f1c$17e61930$[EMAIL PROTECTED]">news:033c01c12f1c$17e61930$[EMAIL PROTECTED]..

Re: Passing Scalar Reference to Subroutine

2001-08-16 Thread randy Peterman
I believe that you may need to add an ampersand "&" before the name of the subroutine, like so: if(!&isPresent(\$req, $user)) Randy "David Simcik" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Newbie question here... > > I've created a CGI.pm object and want