Complete Php File Upload

[Solved] Complete Php File Upload | Php - Code Explorer | yomemimo.com
Question : basic code for file upload in php

Answered by : bodhaditya-mukherjee

//This is the minimal code for an image upload for first time learners
//html portion
<!DOCTYPE html>
<html>
<head>	<title>ImageUpload</title>
</head>
<body>	<form action="upload.php" method="post" enctype="multipart/form-data">	<label>Username</label>	<input type="text" name="username">	<br>	<label>UploadImage</label>	<input type="file" name='myfile'>	<br/>	<input type="submit" value="upload">	</form>
</body>
</html> //php portion <?php	$user=$_POST['username'];	$image=$_FILES['myfile'];	echo "Hello $user <br/>";	echo "File Name<b>::</b> ".$image['name'];	move_uploaded_file($image['tmp_name'],"photos/".$image['name']);	//here the "photos" folder is in same folder as the upload.php,	//otherwise complete url has to be mentioned	?>

Source : | Last Update : Fri, 10 Jul 20

Question : php upload file

Answered by : hungry-heron-1tl0sqpp65o7

<?php
$filename = basename($_FILES['myfile']['name']);
if (move_uploaded_file($_FILES['myfile']['tmp_name'], "files/$filename")) { echo "File uploaded";
} else { echo "An error occurred";
}
?>
<form action="<?php echo htmlspecialchars($_SERVER['REQUEST_URI']); ?>" method="post" enctype="multipart/form-data"> <label>File: <input type="file" name="myfile" /></label> <input type="submit" value="send" /> </form>

Source : https://wiki.weeklyd3.repl.co/index.php?title=PHP+for+Big+Nubs | Last Update : Thu, 14 Jul 22

Question : PHP File Upload

Answered by : naly-moslih

<!DOCTYPE html>
<html>
<body>
<form action="upload.php" method="post" enctype="multipart/form-data"> Select image to upload: <input type="file" name="fileToUpload" id="fileToUpload"> <input type="submit" value="Upload Image" name="submit">
</form>
</body>
</html>

Source : | Last Update : Mon, 30 May 22

Answers related to complete php file upload

Code Explorer Popular Question For Php