How to upload any files extension in our database
Ex.(.doc,.txt,mp4,mp3 etc.)in php
Answer / rajasekhar
It is so simple
first take a form to upload any extension file, your self
<?php
if($_POST['submit'] == 'submit')
{
$filename = $_FILES['file']['name'];
$tmpname = $_FILES['file']['tmp_name'];
$source = "upload/"; // this is a
folder in our server or system
$distination = "upload/".$filename; // we are
uploading file in to our created folder
if($_FILES['file']['error'] == false)
{
move_uploaded_file($tmpname,$distination);
}
// using sql we are upload file name into database,
$sql = mysql_query("insert into file set filename =
'".$filename."' ");
if($sql)
{
echo "file uploaded to database successfully";
}
else
{
echo "Unable to upload file to database. ".mysql_error();
}
// Retriveing file from that database
$sql = mysql_query("select * from file");
$res = mysql_fetch_array();
echo "upload/".$res['filename'];
}
?>
<form name="frm" action="<?php $_SERVER['PHP_SELF']; ?>"
method="post" enctype="multipart/form-data">
<input type="file" name="file" /><input type="submit"
name="submit" value="submit" />
</form>
| Is This Answer Correct ? | 3 Yes | 3 No |
When are you supposed to use endif to end the conditional statement?
What is mean by RSS?How can i use this?
What does the unlink() function mean?
How to test if a variable is an array?
What is the function of mysql_real_escape_string in php?
How can you get the size of an image in PHP?
Why do we use sessions in php?
what is mean by portal
Hi all,, im completely new to PHP, started learning just 2 days before. Can anybody tell me how to run a PHP file to see the program's output? i have created some simple program in Dreamweaver CS3 but don't know how to run it...
What does csrf token mean?
What type of operation is needed when passing values through a form or an url?
Do csrf tokens expire?