Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: skw
  • Order by date
  1. skw

    Pattern matching -- exact match

    I'm still not getting it :(
  2. skw

    Pattern matching -- exact match

    I'm tearing my hair out on this one. I've searched through tek-tips but could not find a distinct answer for my question. my search function script matches and finds a string, but I want to make the string search to be an *exact match*. If I type in mybox1, it also finds mybox14, but I only...
  3. skw

    Split a line and only print up to a certain point

    Thank you all for the fast responses! I picked and choose, and decided to use liuwt. Codiferous example provides the same output as liuwt. Thank you!
  4. skw

    Split a line and only print up to a certain point

    Can someone please help with how to get this done. I have an array, let's call it @directories ('my/dir/name','my/dir/games','my/dir/hobbies'); I have a search function setup, but the one problem I'm coming across, I have this statement find(\&wanted, @directories); if (scalar...
  5. skw

    Creating an advance search perl script

    Paul, thanks for responding.... I think I may have tried Perlfect but it was just too complicated to install and I got frustrated with it ... <<There's a very good indexing script, and search script available free from www.perlfect.com and the correct installtion of that would suit your needs...
  6. skw

    Creating an advance search perl script

    I did a perl script that searches for files, but I want to enhance this perl script so that it does a more indepth/advance search. E.g., I have log files, and the log file names are typically, e.g., LogFileName2.0.0.20030715.box1.csv. I did a search script that'll find any log file, but I want...
  7. skw

    More efficient way to declare variables

    Barbie, thanks that's exactly what I'm trying to accomplish! Mike, I'll go through the FAQ link you provided.
  8. skw

    More efficient way to declare variables

    Okay, I have my Perl script and I declared my variables. I have a lot of variables, over 50 and it is too time consuming having to type out each variable name, is there a more efficient way to declare my variables? This is what I have ... my $frm = new CGI; my $NAME = $frm->param('NAME')...
  9. skw

    validation for drop-down menu

    I need a validation for a drop-down menu. This validation *must not* be an onSubmit validation but something else... onMouseOver, maybe... The problem, I have is with an html form that uses method=GET then it parses form data to other forms, based on radio button selections. This form already...
  10. skw

    Why does post and back button erase form data

    goBoating, thanks for the tip but we use IE5 browser, though most text I've read suggest that this is a problem with Netscape. I see examples that say that the cookie must be set in the httpd header, as example shown below, Content-type: text/html Set-Cookie: cookiename=cookievalue; path=/...
  11. skw

    Why does post and back button erase form data

    No one can respond or have a suggestion?
  12. skw

    Post form results click back button and input data erased

    I have a problem with a form that uses Perl. If the user misses a form field, in this case, the user misses to select from a drop-down list, clicks submit, the warning page comes up saying &quot;missing data&quot;, I click back button, my textarea field box data that has my lengthy input is...
  13. skw

    Why does post and back button erase form data

    I have a problem with a form that uses Perl. If the user misses a form field, in this case, the user misses to select from a drop-down list, clicks submit, the warning page comes up saying &quot;missing data&quot;, I click back button, my textarea field box data that has my lengthy input is...
  14. skw

    How to make the radio button selection go to different response page

    I'm trying to make a perl script respond to user selection from form object radio button value of &quot;Yes&quot; or &quot;No&quot;. That is, if the user selects &quot;Yes&quot;, then the form results will be parsed and user sent to an html page, e.g., &quot;received.html&quot; If the user...
  15. skw

    Javascript in perl

    I'm trying to make a perl script respond to user selection from form object radio button value of &quot;Yes&quot; or &quot;No&quot;. That is, if the user selects &quot;Yes&quot;, then the form results will be parsed and user sent to an html page, e.g., &quot;received.html&quot; If the user...
  16. skw

    How to make the radio button selection go to different response page

    jemminger (TechnicalUser) The form is a basic web form, that uses perl. User fills it out and clicks submit and the results are emailed to recipients. The user gets a &quot;response received&quot; page after clicking email. What I'm trying to do per the question above is to have the user sent...
  17. skw

    How to make the radio button selection go to different response page

    jemminger (TechnicalUser), I used your example above but got the html as the value depending on which radiobutton was selected. That is, the return/results page shows &quot;no_response.html&quot; as the value instead of &quot;NO&quot;. Your help is most appreciated and thanks.
  18. skw

    How to make the radio button selection go to different response page

    Can someone please provide me an example of how to make radio button selection go to a different response form. E.g., Radio buttons for Yes and No. If user selects &quot;No&quot;, finishes completing the form and submit then it will go to &quot;no_response.html&quot;. If the user selects...
  19. skw

    Form validation that will disable if entry not correct

    I've done a basic form validation but there's more to the form validation that I need --- this would be if the entry made in the field isn't correct, then it will disable the remainder of the form and prevent the user from making any other entries. The reason for disabling the remainder of the...

Part and Inventory Search

Back
Top