how to upload file in php and store in database in Hindi

How to Upload File in php and Store in Database in Hindi :

Php में file को upload करने के लिए php में कुछ pre define function दिए गए है जिनका Use कर के php में फाइल को upload किया जाता है file uploading का तात्पर्य यह है की आप इसका use कर के image, Song , Video अदि upload कर सकते है 

http://engineersworld.in/
 

$_FILE[ ] array :
इस array का Use कर के file को html control से php variable में transfer किया जाता है

move_uploaded_file () :
php में file को upload करने के लिए move_uploaded_file() function का use किया जाता है

Example :
<html>
<head>
<titleImage Uplode </title>
</head>
<body>
<form action="u.php" method="post"enctype="multipart/form-data">
<input type="file" name="image"/>
<input type="submit"name="uplode"value="uplode"/>
</form>
</body>
</html>
<?php
if (isset($_POST['uplode'])){
$image=$_FILES['image']['name'];
$image_tmp=$_FILES['image']['tmp_name'];
move_uploaded_file($image_tmp,"$image");
echo "<img src='$image'width='200px'/>";
}
?>

Comments