OK.. ignore that I', using this for a CGI I am trying to do a "for" loop so that %5 of $MaxNum is incremented. here is the NON cgi code for those who are going...
... (I don't have time to go over this in detail...) ...but one obvious thing is 'lt' is for string comparisons. You want '<=' Paul ... There are two major...
Paul Archer
tigger@...
Nov 1, 2004 3:29 pm
19801
... That doesn't compile, You probably wanted to submit this. ... print qq|<td align="right"><SELECT NAME="$ItemName">\n|; for (my $v = 0; $v <= $MaxNum; $v +=...
... You're not *changing* $v0 at all. for (...; ...; $v0 += $MaxNum/20) { ... Uh, use < for numbers ALWAYS. -- Jeff "japhy" Pinyan % How can we ever...
right, thanks... I keep forgeting that... Thanks! I have change the code, after doing som eresearch, in a while command... and got it working! HooBah! Lou ... ...
... Depends on your definition of valid. It will run. Without warnings turned on, it will run without any warnings. With warnings turned on, you'll see a...
From: Malcolm Mill <malcolm.mill@...> ... It's generaly not too good to try to parse HTML by regexps. Except if the HTML was generated by something and...
... That regex has SEVERAL things wrong with it. First of all, backreferences on the right-hand side should be $1, not \1. Second, quantifiers on parts of a...
... Hi Jenda, The book I'm working from is "Apache, MySQL, and PHP Web Development: For Dummies". It is a 7 books in 1 title, and has sections on Perl and ...
On Tue, 2 Nov 2004 16:57:42 -0500 (EST), Jeff 'japhy' Pinyan ... Hi, Japhy. I wasnt sure how to use the backreference. The example from my book I based my...
#i tried this print "Gimme something:"; $var = <STDIN>; chomp $var; print "Gimme a letter or string to replace:"; $var2 = <STDIN>; chomp $var2; print...
Greetings folks, This is a strange problem. I have a script (below) that writes text to a database. $notes seems to have a 255 character limit on it despite...
Don't know enough about Access or ODBC limits, but are you maybe using a function to avoid overflow, such as substr, on the value to populate notes? That could...
... Oh, where to start? Where to start? Your question can be simplified slightly to "I need help". More succinct, but just as useless, really. Try asking your...
Paul Archer
tigger@...
Nov 4, 2004 4:04 pm
19817
I have already mentioned long before...!!! Actually I m trying to open some binary file which is a image sofware in COFF format. and I want to get the symbols...
Thanks for the response Steven, I do pass all form variables through a subroutine to check for malicious code, however, I use the same sub in other scripts and...
I wanna get information from a site which contain frames and dynamic content(jsp).I used lwp module but i can get only source code.The code i wrote is below. ...
... sofware in COFF format. and I want to get the symbols inside it. I am new to perl so i havent try out any option but want to try out someting intially...
Hi all, I want to find all the occurance of #ifdef and #ifndef in a c-source file. I tried out following ... open(INFILE,$ARGV[0]); $inline=<INFILE>; if...
... The <> operator only returns one line from the file in scalar context. You only have one line of the file in your $inline variable. If you want to print...
... source file. I tried out following ... ... #!/usr/bin/perl use strict; use warnings; foreach ( <DATA> ) { print if m/^#if(n|)def/; } __END__ #ifdef or ...
Thanks alot..!!!! can i also transfer these symbols and its values to the excel format...!!!! Bye, Nicck ... The <> operator only returns one line from the...
Hi - im new here, Ive heard from a friend that this is possible, Where a cgi script can 'log in' to a service & do stuff... - has someone got a dummies guide -...
Mark Stewart
markstewart72@...
Nov 6, 2004 1:53 am
19828
... Mark> Hi - im new here, Ive heard from a friend that this is possible, Where Mark> a cgi script can 'log in' to a service & do stuff... Do you mean in...