Extract data from WWW page

2002-02-19 Thread Daniel Falkenberg
Hey All, I haven't come to you for a while with a Perl question :) Just wondering if you can give me some insight into this one... Basically I went ahead and started to use HTML::TableExtract. I must say I am having a heap of fun with it. Unfortunatly I am just having a little bit of trouble

Regex fro email addresses

2002-02-19 Thread Camilo Gonzalez
Does anyone have a regex handy that will extract email adresses and nothing but? I have a large document with email addresses scattered throughout. The addresses are preceeded and followed by a space. #!/usr/local/bin/perl print <<' EOF' Camilo Gonzalez Web Developer

RE: Global Constants in Perl ?

2002-02-19 Thread John Edwards
Yep. Use the constant function http://perlhelp.web.cern.ch/PerlHelp/lib/constant.html -Original Message- From: Stephen.Hurley [mailto:[EMAIL PROTECTED]] Sent: 19 February 2002 17:31 To: '[EMAIL PROTECTED]' Subject: Global Constants in Perl ? Hi, I was wondering if there was a way of d

Global Constants in Perl ?

2002-02-19 Thread Stephen.Hurley
Hi, I was wondering if there was a way of defining global constants in Perl ? I "use strict" to keep all my variables tidy. However, there are a number of "#define"-like vars that I would like to keep all together at the top of my files, so that they can be reconfigured by whoever maintains my co

Re: selecting a text file for HTML output

2002-02-19 Thread Klaus Mangold
>I have the poam_select catagory in the html >page set already but like i said it just puts in the name of the txt file i >have selected not the actual text from the file. >Any suggestions on different ways to do this. Why don't you simply open and read the file with a file handle: open TEXT, "m

RE: Time sensative Sub Routine

2002-02-19 Thread Al Hospers
> I am looking for information or a turorial on making a time > sensitive sub > routine for developing an html page and sending emails. U > want the users to > be able to choose when they want their cards to be made and > the date to > have a notice sent to the recipient. check out the chron func

Time sensative Sub Routine

2002-02-19 Thread Patrick
I am looking for information or a turorial on making a time sensitive sub routine for developing an html page and sending emails. U want the users to be able to choose when they want their cards to be made and the date to have a notice sent to the recipient. Pat Check out www.my-pcdoctor4u.com for

selecting a text file for HTML output

2002-02-19 Thread Patrick
I thought had this. I now know how to select two radio buttons at the same time. I have the first one selecting an image and putting it into a cel in a table works fine but the other radio button I am using is to select a txt file. How do I go about putting a selext txt file in an html out put via

Re: Printing data into a file every time some presses

2002-02-19 Thread zentara
On Mon, 18 Feb 2002 16:18:27 +0200, [EMAIL PROTECTED] (Bruce Ambraal) wrote: >Hi > >Could someone help? > >the following code is not working. > >open(INPUT_FILE,"+>fixed.dat") || die "Could not open filename"; >while () { >print INPUT_FILE "bruce\n"; >} >close(INPUT_FILE); Try unquoting bruce:

RE: Adding second radio selcect button

2002-02-19 Thread Darren Simpson
not a perl question but i will answer it anyway :-) if you make sure the radio buttons you wish to use have the same value in their name field then they will act as a group and cancel each other out. Regards -Original Message- From: Patrick [mailto:[EMAIL PROTECTED]] Sent: 19 February 2

Adding second radio selcect button

2002-02-19 Thread Patrick
I'm trying to add a second radio select buttong to a web page. Can anyone suggest how to do this so one does not cancel the other out. I can do the cgi script to include the second ovject if i can get the form to allow for two selects, Thanks Pat Check out www.my-pcdoctor4u.com for all kinds of FR