Jump to content

LiamProductions

Members
  • Posts

    496
  • Joined

  • Last visited

    Never

Everything posted by LiamProductions

  1. You need to work on your systems... You can register with just a username no pass or anything or email You can make a post without any subject or message
  2. This is the output now: File: healthbar.png Type: image/png Size: 270 Warning: move_uploaded_file(upload/healthbar.png) [function.move-uploaded-file]: failed to open stream: Permission denied in /home/liam/public_html/uploadfinish.php on line 17 Warning: move_uploaded_file() [function.move-uploaded-file]: Unable to move '/tmp/phpfOcFhM' to 'upload/healthbar.png' in /home/liam/public_html/uploadfinish.php on line 17 Stored in: http://www.liam-monks.com/upload/healthbar.png
  3. Sure... upload.html: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"> <meta name="author" content="PHP Designer 2007"> <title>Untitled 2</title> </head> <body> <form method="post" action="uploadfinish.php" enctype="multipart/form-data"> File: <input type="file" name="file"> <input type="submit" value="Upload!"> </form> </body> </html> AND... uploadfinish.php <?php echo "<pre>";print_r($_FILES); if($_FILES['file']['size'] < 20000) { if($_FILES['file']['error'] > 0) { echo "We have found a error: " . $_FILES['file']['error'] . "<br />"; }else{ echo "File: " . $_FILES['file']['name'] . "<br />"; echo "Type: " . $_FILES['file']['type'] . "<br />"; echo "Size: " . $_FILES['file']['size'] . "<br />"; if(file_exists("upload" . $_FILES['file']['name'])) { echo "Sorry, " . $_FILES['file']['name'] . "already exists. "; }else{ move_uploaded_file($_FILES['file']['tmp_name'], "upload/" . $_FILES['file']['name']); echo "Stored in: http://www.liam-monks.com/upload/" . $_FILES['file']['name']; } } }else{ echo "Invalid File!"; } ?> and the result of the page is: Array ( [file] => Array ( [name] => tgpamandabynes.jpg [type] => image/jpeg [tmp_name] => /tmp/phpr3RLIq [error] => 0 [size] => 28375 ) ) Invalid File!
  4. Huh? And why isnt the data being recieved?
  5. Connect? Do you mean view my files? cPanel 11
  6. My hosting is at http://www.apthost.com
  7. Not sure what you mean... AND... i've changed the form to what you said.
  8. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"> <meta name="author" content="PHP Designer 2007"> <title>Untitled 2</title> </head> <body> <form method="post" action="uploadfinish.php"> File: <input type="file" name="file"> <input type="submit" value="Upload!"> </body> </html>
  9. The code you just sent outputs: Array ( ) File: Type: Size: Stored in: http://www.liam-monks.com/upload/
  10. Hey. I've made a simple upload script... and its not giving me any errors or uploading the file or even telling me the file name <?php if($_FILES['file']['size'] < 20000) { if($_FILES['file']['error'] > 0) { echo "We have found a error: " . $_FILES['file']['error'] . "<br />"; } else { echo "File: " . $_FILES['file']['name'] . "<br />"; echo "Type: " . $_FILES['file']['type'] . "<br />"; echo "Size: " . $_FILES['file']['size'] . "<br />"; if(file_exists("upload" . $_FILES['file']['name'])) { echo "Sorry, " . $_FILES['file']['name'] . "already exists. "; } else { move_uploaded_file($_FILES['file']['tmp_name'], "upload/" . $_FILES['file']['name']); echo "Stored in: http://www.liam-monks.com/upload/" . $_FILES['file']['name']; } } } else { echo "Invalid File!"; } ?> I don't see the error anywhere and its providing no error: Full page result: File: Type: Size: Stored in: http://www.liam-monks.com/upload/
  11. You should use the strip tags to strip all the scripts from the username strip_tags() http://www.php.net/strip_tags And you might want to use the trim to stop people from having users like "h e l l o " trim() http://www.php.net/trim
  12. <?php $pass = $_POST['pass']; $pass = md5($pass); ?>
  13. Thanks for that. But i don't think web design is the way for me to go until im older and can afford PhotoShop :-X And... This post was suppose to be a review on a book i got
  14. I've got the book Sams teach you PHP 4 and Mysql in 24 hours Just looking at it looks great, teaches you everything... well not everything...
  15. try storing $REQUEST_URL in a variable.
  16. something like this: <?php $back = $_SERVER['HTTP_REFERER']; <a href="$back">go back</a> ?>
  17. You might store each email in a database then loop it out?
  18. If teens have fun coding we should be able to do it than some adults saying you should'nt do it till your older
  19. Can i just say... I am in Grade/Year 9 -HIGH SCHOOL- I do have plans for the future... Either something to do with Computers like Programming or being a Plumber
  20. Can i have your MSN, SO i can speak to you? If yes, PM it me
  21. Your saying i won't get any general experience? And you guys are being stupid this is like saying Don't play football till your older then get a football job
  22. General Life experience? What do you mean by that?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.