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: speedyrudolf
  • Content: Threads
  • Order by date
  1. speedyrudolf

    Launch script AFTER files upload

    Hi. I'm making a website with multiple file inputs. The problem is submitting the form: if the user selects big files (eg: 3-4mb), when he submits the form, the php script is launched before the files have uploaded completely. How can I launch the script AFTER the file have uploaded (something...
  2. speedyrudolf

    Geometry vs Graphics

    Hi. I want to buy a new pc and I'm thinking about using 2 graphics cards (someone said something that I thought would be interesting to try). So here are the questions: 1) can one graphics card be used to do the graphics/textures and one to do the geometry (both being ATI cards: Radeon X1900XTX...
  3. speedyrudolf

    mail with attachments problem

    Hi. I have the following code: else if(file_exists("site".$timp.".zip")) {$file=fopen("site".$timp.".zip", "rb"); $data=fread($file, filesize("site".$timp.".zip")); fclose($file); $data=chunk_split(base64_encode($data)); $message.="Content-Type:{\"application/octet-stream\"};\n"."name=...
  4. speedyrudolf

    move_uploaded_file() error

    Hi. While trying to test a some code, I ran into this error: The code is: <?php require("class.easyzip.php"); $timp=time(); $zip=new EasyZIP; $file_dir="./upload".$timp; mkdir($file_dir, 0777); $dir=opendir($file_dir); foreach($_FILES as $fisier=>$fisiere)...
  5. speedyrudolf

    keep checkbox checked

    Hi. I'm having a pretty hard time figuring how to do something... In a nutshell, I have a form, when submitted it calls a php page that emails me the form, if it can't email it, it stores the form field values in a txt file, then calls up another php page, which is actually the form with the...
  6. speedyrudolf

    move_uploaded_file error

    Hi. I have the following code: $timp=time(); $file_dir="./upload".$timp; mkdir($file_dir, 0777); foreach($_FILES as $fisier=>$fisiere) {if(is_uploaded_file($fisiere['tmp_name'])) {move_uploaded_file($fisiere['tmp_name'], "$file_dir/$fisiere[name]");}} Well...that is just part of the...
  7. speedyrudolf

    if checkbox checked....

    Hi. I'm making a website that includes a form, and I kind of hit a bump with the php. PHP: {for($i=0; $i<22; $i++) {if($_POST["Navs".$i]=='ON') {$message.=$i.", ";}} HTML: <tr><td width="425"><input type="checkbox" id="Navs0" onClick="Cont_pag5_3()"><img name="But_nav"...
  8. speedyrudolf

    Double variable filenames

    Hi. I was wondering: can files be named using 2 variables? something like: $a="not"; $b="_now"; touch("$a$b.txt"); If anyone knows how to do this, please tell me. Thank you.
  9. speedyrudolf

    Name files incrementally

    Hi. Can someone tell me how to name files incrementally. For example, I'm trying to make an app that downloads once a day a file from the same site. The problem I'm facing is: I want to name the files that are downloaded something like this day1.jpg, day2.jpg, day3.jpg etc. I already did most of...
  10. speedyrudolf

    Argument problem

    Hi. I'm trying to get php to fetch some files, but I can't figure out how to do it...here is the code.. <?php require("class.easyzip.php"); $zip = new EasyZip; $zip -> addFile("$_POST['Fis_lay']"); $zip -> addFile("$_POST['Fis_lay']"); $zip -> splitFile("site.zip", 50000); echo 'Attachment has...
  11. speedyrudolf

    getElementById not working

    Hi. I'm making a web site...And the following bit of code doesn't work...It sais "document.getElementById(...) is null or not an object"...I tried various combinations of getElementById and getElementsByName but nothing works...Any help is very much appreciated. Thanks. <!DOCTYPE HTML PUBLIC...
  12. speedyrudolf

    HTML tag not working well

    Hi. I'm trying to make a form with some hidden fields (when the user clicks a button a new field appears). Anyway...after every field+button (they go together on a single line) I put the <br/> tag (otherwise it would be very confusing, with a field, button, field on a line, on the next line a...
  13. speedyrudolf

    show input field using javascript

    Hi. I'm having some trouble showing some tables (originally hidden). I have an input field, and when the user clicks a button another field becomes visible...the user can do this up to 9 times. The problem is that when I click the button, the field stais hidden. The code is: function...

Part and Inventory Search

Back
Top