RE: What was your first PERL script (was Off-Topic (200%) - Where are you from?)

2001-11-13 Thread Dave Turner
Mine just got completed after about 6 months of on and off work. It is a CGI app to allow a merchant to update items for sale via a web page. Adds them on one side, and check boxes allow you to choose which to get rid of on the other side. It writes items to a small file -- it's too small a nu

Re: Off-Topic (200%) - Where are you from?

2001-11-10 Thread Dave Turner
At 06:48 PM 11/10/01 +0100, you wrote: >Hi, >Smauel Molina Vidal >Industrial Engineer student @ University of Seville, Seville, Spain >(quite far from the west coast :-) San Mateo, CA --Very west coast... :-) -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: Problem using IF with AND

2001-10-29 Thread Dave Turner
I think ( and there's plenty who will tell you if I'm wrong... lol ) that you need to put it as: if (($client ne $newclient) && ($method ne $newmethod)) { // blah blah blah } Otherwise I think it doesn't bother to look at the second if the first fails. Hope that helps. At 10:28 PM 10

Need help with CGI module

2001-10-28 Thread Dave Turner
I have scanned the docs and can't seem to find the answer to this anywhere. I want to change the color of the text and the font size on a web page using CGI:pm. my code looks like: $q->h2( "Something witty here"); but I'd like to have the flexibility to do Can anyone point me to a reference

Need help with deleting from hash table

2001-10-20 Thread Dave Turner
First off, thanks to all who offered help with my trying to count the number of items passed in a CGI script. I finally figured out I had my logic wrong and it doesn't matter how many element's I'm passing, but... My problem now is that I can't get items deleted from a hash table. My code is a