Search results

  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>...
  16. T

    Php directory help

    I am trying to take files from a folder and output them into table under categories "filename", "filetype", "filesize". The script works fine but when it outputs any other file besides basic files such as txt,php,html. When the files are jpg, .zip, etc. it will create error not being able to...
  17. T

    Need php help for registering

    Having problems with php registering script, confirm php is file with login information register.html file <form name="form1" method="post" action="registernext.php"> Username:<input type="text" name="username" size="15" maxlength="20" value=""><br /> Password:<input type="password"...
  18. T

    Need php/css outputing help

    ty for help got my problem solved now.
  19. T

    Need php/css outputing help

    Making a virtual pet site for fun but the shop items when i output them the price goes to the side of it instead of underneath it. looking for a way to output the price underneath the picture instead of to the side of it. <style type="text/css"> li{display:inline} </style> <ul> <?php...
  20. T

    need help on php/html

    trying to make my images line up right. The code works fine but i cant seem to get the price to go under the image instead of to the side of it and keeping the images all in same row. $query2 = "SELECT * FROM game WHERE item_type = 'food' ORDER BY RAND() LIMIT 7"; $result =...
Top