Recent content by thenewprogrammer

  1. T

    Uploader

    Hey, im using a uploader that works fine but instead of calling another page to test conditions i want to call a specific function. The function i want to call works perfectly fine if i load and call it normally but in this code it screws up. This is the complete uploader...
  2. T

    Returning javascript with php

    Hey, wondering how i would return javascript from testing php page. Like for uploading, if the page with upload button is on is upload.php and the testing is on upload-file.php. How would i return javascript from upload-file.php. When i put javascript in upload-file.php it only works for that...
  3. T

    Php downloading

    Trying to do something like rapidshare but on a loss for how to do it. Right now i have download page that makes links for all the users files they uploaded. But what i want to do is have the file on a download page like rapidshare which has custom download page when i go to the link instead of...
  4. T

    Browswer problems

    Just found the problem :). It was z-index: -1 in css. The div was inside another div which caused the problem to overlap or something like that. Thanks for the advice on how to post form without echoing.
  5. T

    Browswer problems

    Your way for code makes it much easier to read, thanks :) but problem is still there. In internet explorer 8 i can type text in the input field however in mozilla firefox its completly locked. The input boxes are there but i cannot type anything in.
  6. T

    Browswer problems

    Its in php tags and echo'd out. I know i can use only one echo but this made it easier to read for me. <?php if(!$session->logged_in){ echo "<form action=\"loginsystem/process.php\" method=\"post\" ><table align=\"left\" border=\"0\" cellspacing=\"0\" cellpadding=\"3\"> <tr><td>&nbsp; &nbsp...
  7. T

    Huge file upload problems

    using a upload script that works perfectly but one problem. When i upload huge files it triggers the file is greater than limit error. Seems pretty obvious on how to fix it. So i made file size with billion 9's. But it still fails no matter what size i put. Other files upload fine but than i...
  8. T

    Browswer problems

    Wondering how to fix browser problems. Using a login, which works fine for my computer and internet explorerer but not in mozilla or my friends computer doesnt work the same. The login box is there but he cannot type anything in there. Wondering if this is common browser problem and what would...
  9. T

    Php compressing

    Wondering if its possible to remove spaces and repeated words before compressing file to speed up the upload speed and than when decompressing it will be back to normal.
  10. T

    PHP creating folder help

    Trying to have folder create based on username. So if the username Frank uploads something i want his file to be uploaded to folder uploads/frank/(his file here). But im not good with php and screwing up. I have the upload code already and had it working on uploading to certain folder but cant...
  11. T

    Multi upload help

    Hey i have upload script that works fine now but i want to add another option to it. Currently it uploads all files uploaded to folder called uploads but i want to have folders create themselves for a user. Example like if user "FRANKY" uploads something i want it to upload to folder FRANKY or...
  12. T

    Multi upload help

    Is java applet java programming ? is it not possible using ajax?
  13. T

    Multi upload help

    Trying to create upload script and got how to make the file upload but when i click browse i can only select one file at time unless i put more input boxs. I wnat to be able to select multple files at once like in the link below but havnt a clue on how to do it. Any help would be good...
  14. T

    Hate VS Love

    For one thing to existt its oppisite has to or somin like that. Also simple answer to hate. Greed
  15. T

    Need simple ajax/php help

    Trying to echo out a javascript from a javascript when i press button on html page which sounds stupid but just trying to get it to work. Nothing happens and im new to this and in search of answers. html page <html> <head> <script type="text/javascript" src="clienthint.js"></script> </head>...
Top