Re: Manipulating arrays

2003-09-02 Thread Visu
You can get all the basic stuff on arrays in this url http://perldoc.com/perl5.8.0/pod/perlintro.html You can get more info from this url also www.cs.cf.ac.uk/Dave/PERL/ FYI perldoc.com contains all the information related to perl in web page format. SV On Mon, 1 Sep 2003, Antonio Jose wrote:

Re: Regarding substitution

2003-08-14 Thread Visu
On Sat, 9 Aug 2003, Wiggins d'Anconia wrote: > Visu wrote: > > Hi, > > I have extracted links from a html source using HTML::TokeParser. > > I used 'a' as a parameter in get_tag method of HTML::TokeParser.Then I > > want to substitute something fo

Regarding substitution

2003-08-14 Thread Visu
Hi, I have extracted links from a html source using HTML::TokeParser. I used 'a' as a parameter in get_tag method of HTML::TokeParser.Then I want to substitute something for the links that i have extracted. But the substitution fails for the links in the below lines. color="#00" face

connecting oracle

2003-08-03 Thread Visu
Hi, Kindly guide me to connect oracle through perl.Any pointers and directions are welcome Thanks, SV -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Regarding fontface infromation

2003-07-28 Thread Visu
On Mon, 28 Jul 2003, Charles K. Clarkson wrote: > Visu <[EMAIL PROTECTED]> asked: > : How can i get the fontface name in a html file? > > The tag can be anywhere in the page. It > does not necessarily apply to the entire page. Also, > CSS allows changing the

Regarding fontface infromation

2003-07-28 Thread Visu
hi, How can i get the fontface name in a html file? For example in the below tag , i want to get Arial in my output.Any pointers are welcome. Thanks, sv -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: apache...

2003-07-25 Thread Visu
ause it is looking for under html so > the path it is trying to locate is /html/cgi-bin? how can I fix this!!! > where in the apace conf file? > > > > Change the path as ../cgi-bin/w2h/w2h.start.Even if it wont work for you look at the confi. file at /etc/httpd/conf. Check

RE: perl program

2003-07-25 Thread Visu
ve steps i can able to generate an exe file for a simple script.But at the same time i applied the above steps to a complex script fo which i got the following error message. ## /usr/bin/perlcc: multipleanalyseV5.0.pl did not compile, which can't happen: Starting compile Walking tree Prescan Saving methods ## Any directions.. Thanks, visu -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: regarding CGI.pm---sorry for posting again

2003-07-24 Thread Visu
y(keys %form) { print qq/$key $form{$key}\n/; } > What is the output form the command line? I executed the script in the command line as perl cgi1.pl name="mks" and i got the output as below. Content-Type: text/html; charset=ISO-8859-1 mks Thanks, visu -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

regarding CGI.pm---sorry for posting again

2003-07-24 Thread Visu
@name) { @values=$a->param($_); print qq/@values\n/; } thanks, visu -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]