How would i upload image files to a database and then display them using
<?php
$query = "SELECT * FROM members WHERE email='$username' AND id='$id'";
$result = mysql_query($query);
$row = mysql_fetch_array($result);
?>
<img src='<?php echo $row['pic']; ?>'>
and also, what kind of field should i use in the mysql database?
if you could help me asap that would be awesome