I am working in php I want browse and upload the image file
this is my php code
<?php
if(isset($_POST['submit']))
{
    $link= mysql_connect('localhost','root','');
    mysql_select_db('bawa'); 
    if(isset($_FILES['image']) && $_FILES['image']['size'] >0)
    {
        //Temporary file name stored on the server 
        $tmpname = $_FILES['image']['tmp_name'];
        //read a file 
        $fp = fopen($tmpname,'r');
        $data=fread($fp,filesize($tmpname));
        $data=addslashes($data);
        fclose($fp);
        $query = ("UPDATE user_summary SET image='$data' where user_id=2");
        $query .= "(image) VALUES ('$data)";
        $results = mysql_query($query,$link);
        echo "Working code";
    }
    else{
        echo mysql_error();
    }
}
?>
when i click on submit button my image should updated in my database but its not updating in database any help?
 
    