Create HTML code with perl

2006-09-04 Thread Webmaster Adil
Hi All I need print HTML codes with perl: Tste Tste Tste Tste I tried with this way, but not work: print MAPA ""; print MAPA "\n"; print MAPA "teste\n"; print MAPA "teste\n"; print MAPA "\n"; print MAPA "\n"; print MAPA "teste\n"; print

Taint-Mode

2005-05-13 Thread webmaster
Hi, i'm looking for a way to activate the taint mode by defaut on my mashine, with out doing the !#/usr/bin/perl -T in each script! Somebody has an idea? Thanks Thomas -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

file - uplaod 0 byte file

2005-04-13 Thread webmaster
Hello, i have a problem after changing form perl 5.6.2 to 5.8. my upload program for files does not work anymore, the read($fie, $buffer, 2048) is always empty my Programm starts like this [code] #!/usr/bin/perl .. bla bla.. use CGI; $q = new CGI; %form = get_form_values(); .. bla bla.. print

Help on permissions for CGI

2004-06-29 Thread WEBMASTER
Hello everybody. I am on a new server and have discovered the Directories in the CGI-BIN are visible to everybody. This is, if a type www.mysite.com/cgi-bin I get a list of all the files and subdirectories, and so for every subdirectory. I had never had this issue. What is the best permission f

Re: Re: Simple regex string replacement problem

2002-01-10 Thread webmaster
Yes, I am in fact changing the template file. Personally my first experience with CGI::FastTemplate has made me wish it were a bit more flexible, but I suppose it's certainly conceivable that the flexibility is there and I just haven't found it based on what I read in perldoc. -Ian -- Original

Re: Simple regex string replacement problem

2002-01-10 Thread webmaster
Jeff et al, >>I have a file which has many strings like "$something[0]" through >>"something[20]" amongst other text (quotes only provided here for >>clarity). >> >>What I want to do is replace these strings with: "$SOMETHING0" through >>"$SOMETHING20". > >Personally, I find that odd -- moving fr

Simple regex string replacement problem

2002-01-10 Thread webmaster
Hello All, I know this is very basic and similar items have come up numerous times on this list, but I'm not sure where my boneheaded mistake is here. I have a file which has many strings like "$something[0]" through "something[20]" amongst other text (quotes only provided here for clarity). Wh

Re: CGI::FastTemplate confusion

2002-01-07 Thread webmaster
Hello Peter et al, >>This probably should be addressed to [EMAIL PROTECTED], but since I >>think I can help, here goes. Sorry about that; I thought about it only after hitting send. >You need to use the assign method before the parse. tpl->assign($hashref) >This method expects a hasref as an

CGI::FastTemplate confusion

2002-01-07 Thread webmaster
Hello all, I've just begun to use CGI::FastTemplate and I get the feeling I am misunderstanding something. I have read the perldoc repeatedly, but I guess it's just not sinking in. If anyone can lend some insight, it would be much appreciated. I have done the following: 1) Created an HTML tem

Re: counting

2001-08-23 Thread webmaster
agtttccagtcagctgctctctgtcccag 60 Sbjct: 1ctacaca-gaaagaatggtgg---tcaagtttcttcttgctctctctctgtcccag 60 so for example at the momento it is not giving me the number of characters on the quey line again how c

counting

2001-08-22 Thread webmaster
I have #!/usr/bin/perl $REPORT_file="report.htm"; $ imput_file=$ARGV[0]||'imput.dat'; unless (-e $imput_file) { die "$0: error:missing file: $imput_file"; } open (IN, $imput_file) or die "$0 : error: $imput_file: $!"; #print $imput_file; my $line; while ($line=) { chomp $line; print "proc

inquiry

2001-08-21 Thread webmaster
what does Global symbol "@ARG" requires explicit package name at testbio1.pl line 4. Global symbol "$sbjct_scr" requires explicit package name at testbio1.pl line 29 . Global symbol "%query_conunts" requires explicit package name at testbio1.pl lin e 46. Global symbol "$sbjct_srs" requires expli

thanks and keep helping!!!

2001-08-20 Thread webmaster
well thanks for the help... but ... well need osme some more ofo your expertise... sorry but I am a new new newest in this perl thing well following this randal swartz book, the example where the scritpt should opne an external file and check for a secretword... the external file is supposuse

help, real perl beguinner!!!

2001-08-20 Thread webmaster
please help HELP -- Forwarded message -- Date: Mon, 20 Aug 2001 05:04:31 -0400 (EDT) From: webmaster <[EMAIL PROTECTED]> To: Paul Johnson <[EMAIL PROTECTED]> Cc: Gary Stainburn <[EMAIL PROTECTED]>, jim-ryan <[EMAIL PROTECTED]>, [EMAIL PROTECTED] I h

Breaking out of foreach loop

2001-08-05 Thread Webmaster
Can someone tell me how I can break out of a foreach loop before the end? Thanks Chris -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re[2]: trying to convert characters into numbers based on a

2001-06-20 Thread WebMaster AIM-US
Same here, many duplicates in fact. I thought I was having a little deja vu until I read this one. Can the list masters look into this one please? Stephen __ Reply Separator _ Subject: Re: trying to convert chara

Re: Huge hash ... running out of memory without warning???

2001-06-13 Thread WebMaster AIM-US
One thing you could do is to read only the things you need into memory at the time you need them to. If you change the values in the hash(es), you could dump it to a temporary file and load them again as needed(note kind of like a swap file does). Another thing w