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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by lilstevey

  1. lilstevey

    How do I find the least number

    This sounds more like a sql based problem than a perl one. Are you sure you need to use perl for this, rather than just use plain SQL?
  2. lilstevey

    My perl script returns a 500 server error

    First try the other suggestions in faq452-3023 Theres a handy little trick for situations like this. Get rid of the content-type:text/html line, and put the following at the start of your script: #!/usr/bin/perl BEGIN { print "Content-type: text/html \n\n"; } my @code =...
  3. lilstevey

    terminator error for END....why?

    Which isn't totally relevant here, as your server has been configured to display error messages - however, others might find this usefull...
  4. lilstevey

    terminator error for END....why?

    Theres a handy little trick for situations like this. Get rid of the content-type:text/html line, and put the following at the start of your script: #!/usr/bin/perl BEGIN { print &quot;Content-type: text/html \n\n&quot;; } my @code = ( <DATA> ); my $code = join &quot;\n&quot;,@code...
  5. lilstevey

    too much scipt wont write the code

    Hmm, I don't seem to be able to download your code from the showperl script, however, as general practise, it could be an idea when processing form values to 'clean them' through a hash first - as an example, try inserting these lines into line 11 ( just after the get_form statement ) of...

Part and Inventory Search

Back
Top