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

    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...
  5. 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...
  6. 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.
  7. 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...
  8. 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...
  9. 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>...
  10. 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...
  11. 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"...
  12. 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...
  13. 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 =...
  14. T

    need mysql help

    trying to make profile page which displays information from 3 differnt table using full join for the current user thats logged in which is in the variable $user. need to select table 'users' to get their info and than connect users to the table 'pets' for pet information and the petid...
  15. T

    need php/mySQL help again :(

    Trying to make pet registration form. When i choose color/gender/name than click register it sends the pet information to the table. But for the second part i cant figure out why it comes up with error fetch_aray is a invalid argument. confirm.php has my connecting information and its all...
  16. T

    PHP varaible question

    Having problems trying to get 3 differnt values into one field(birthday,birthmonth,birthyear) found out i cant assign more than one value to variable like this and wondering if and how i can set this into array. this outputs nothing and when i give them differnt varables and try to put it...
  17. T

    mySQL question about age

    I have a registration for age where they have to choose month, choose day, and type in the year. i got 1 field for age. Question 1: can i store all values into that field like day, month, year? Question 2: if i wanted to echo out the birthday of the person and than age above it can i pull out...
  18. T

    Changed php code but still have question

    Having problems outputing information from a table called login. Database information is correct and users are in there under field 'username' .Noticed everyone's opinions on whats wrong with code havnt worked so far. Output is always User profile which is direct text in the head. When signed...
  19. T

    Need php help

    trying to grab data from table and than echo it out in profile but its not working or if anyone has better profile way they like to help me with <? $user = $_GET['user']; session_start(); if(isset($_SESSION['user'])){ } else { echo " <script language='javascript'> alert('Sorry, but...
  20. T

    looking for help

    First time with trying to upload website...cant figure it out.. got to the cpanel and file manager but dont know where to upload the files to. every time i type in website url still same 404 page. Any help on how to do this plz say.
Top