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 IamaSherpa 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: there
  • Order by date
  1. there

    upload files to a directory

    I have written a code to upload files to a directory but it only works if something is place in the upload files field. The problem arises when the upload file field is empty and you make changes to some of the other fields on the same form and it will not work. This is for adding and editing...
  2. there

    upload files to a directory

    I have written a code to upload files to a directory but it only works if something is place in the upload files field. The problem arises when the upload file field is empty and you make changes to some of the other fields on the same form and it will not work. Where am I going wrong? How...
  3. there

    file size not transferring in uploading a file (browse feature)

    jaa, now uploading a file to the add section works. this is the code ##-------- # uploadImage() ##-------- sub uploadImage { # need this transfer the right size of the file $upload_logo = param('logo'); $logo = lc(join '', split / /,(split/\\/, param("logo"))[-1]); # $upfile =...
  4. there

    file size not transferring in uploading a file (browse feature)

    Dear jaa, thank you for your reply. I should change $upload_log to $upfile like this ##-------- # uploadImage() ##-------- sub uploadImage { $upfile = lc(join '', split / /,(split/\\/, param("logo"))[-1]); $abs_file_to_create .=...
  5. there

    file size not transferring in uploading a file (browse feature)

    Dear wise-one, I have been trying to get the upload file feature to work. It is almost working but one problem, it is not transferring the file size. the file is transfer in the right location and file name on the web server but the file size is 0. another question "binmode" is this...
  6. there

    upload files to a directory

    Dear wise-one, I am getting close but still need your wisdom to solve my problem. ADD FEATURE I want to add an upload feature to: add code -------- ##-------- # uploadImage() ##-------- sub uploadImage { $upfile = lc(join '', split / /,(split/\\/, param("logo"))[-1])...
  7. there

    upload files to a directory

    Rieekan, I got it somewhat working. it transfer the file from desktop to web server but the size is 0 and I am not sure it is transferred in binary (if this is a worry). code ---- ##-------- # uploadImage() ##-------- sub uploadImage { $upfile = lc(join '', split / /,(split/\\/...
  8. there

    upload files to a directory

    Rieekan, thank you for your input. I've tried what you've suggested and it didn't work. I must be doing something wrong. please look at the code below, including your suggestion inserted. ##-------- # uploadImage() ##-------- sub uploadImage { $upfile = lc(join '', split / /,(split/\\/...
  9. there

    upload files to a directory

    sleipnir214, any response for the above? I have typed it below for your convenience. for the line you've mentioned above $abs_file_to_create .= "tempfile"; I should go ???? $abs_file_to_create .= "$logo"; note: $logo is the value of the input field Thank you for your...
  10. there

    upload files to a directory

    Thank you for your response. for the line you've mentioned above $abs_file_to_create .= "tempfile"; I should go ???? $abs_file_to_create .= "$logo"; note: $logo is the value of the input field Thank you for your knowledge, wisdom and time! There
  11. there

    upload files to a directory

    Hi, I went over the the posting in this thread and TRIED and TRIED to make the coding work. I must be doing something wrong. PLEASE HELP. in the html coding ------------------ <form action=&quot;script_name.cgi&quot; method=&quot;post&quot; enctype=&quot;multipart/form-data&quot;> <input...
  12. there

    Upload a file

    Hi, I went over the the posting in this thread and TRIED and TRIED to make the coding work. I must be doing something wrong. PLEASE HELP. in the html coding ------------------ <form action=&quot;script_name.cgi&quot; method=&quot;post&quot; enctype=&quot;multipart/form-data&quot;> <input...
  13. there

    sorting in perl

    LightElf, thank you for reply. 1.0 line: if ($name eq &quot;$name1&quot;) { =========== I need to keep it as $name eq $name1 due to calling of the previous webpage. As you suggested, it didn't work. any suggestions? Objectives: sort by $company of companies who have the same $name. The...
  14. there

    sorting in perl

    Mike, I apprepriate your quick response. I did what you have recommended but it didn't work. Could you look over my coding below and see where I went wrong. Objective: sort by $company open (LISTDATA, &quot;$database&quot;); @indata = <LISTDATA>; close (LISTDATA); foreach $entries...
  15. there

    sorting in perl

    I am trying to sort in perl. I need HELP. It is not working for me and I have tried everything and anything. Please advise me what to do. example of database name|company|address|state I want to sort in company both in asc and desc open (LISTDATA, &quot;$database&quot;); @indata =...

Part and Inventory Search

Back
Top