Jump to content

[SOLVED] Image uploading?


knowram

Recommended Posts

I am trying to figure out how to add an image uploading script to my site so that people can add a profile image. I have been searching for 3 days now and I must be looking in the wrong places. I am not sure which is best, to store the image in a mysql database or in a directory? Can someone point me in the right direction please?

 

Thank you for all the help.

Link to comment
https://forums.phpfreaks.com/topic/141288-solved-image-uploading/
Share on other sites

try this

 

<?php
if(isset($_POST['submit'])){
$folder="uploaded_files/";
$userfile=$_FILES['ufile']['tmp_name'];
$filename=basename($_FILES['ufile']['name']);
$serverpath="$folder$filename";
$x=move_uploaded_file($userfile,$serverpath);
if($x){
	echo "File Uploaded Sucessfully";
	}
else{
	echo "file not uploaded";
}
}
?>
<html>
<body>
<form enctype="multipart/form-data" method=post>
file<input type=file name=ufile><input type=submit name=submit value=UPLOAD>
</form>
</body>
</html>

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.