Hello,
I have a situation regarding the displaying the image from MySQL database.
Here is my code of upload the images to MySQL.
<?php
if(isset($_POST['upload']) && $_FILES['userfile']['size'] > 0)
{
$fileName = $_FILES['userfile']['name'];
$tmpName = $_FILES['userfile']['tmp_name'];
$fileSize = $_FILES['userfile']['size'];
$fileType = $_FILES['userfile']['type'];
$fp = fopen($tmpName, 'r');
$content = fread($fp, filesize($tmpName));
$content = addslashes($content);
fclose($fp);
if(!get_magic_quotes_gpc())
{
$fileName = addslashes($fileName);
}
$conn = mysql_connect("localhost", "root", "");
mysql_select_db("test", $conn);
$query = "INSERT INTO pics VALUES ('','$fileName', '$fileType', '$fileSize', '$content')";
mysql_query($query, $conn) or die('Error, query failed');
echo "<br>File $fileName uploaded<br>";
}
?>
<html>
<head>
<title>Pic Upload</title>
</head>
<form method="post" enctype="multipart/form-data">
<table width="350" border="0" cellpadding="1" cellspacing="1" class="box">
<tr>
<td width="246">
<input type="hidden" name="MAX_FILE_SIZE" value="2000000">
<input name="userfile" type="file" id="userfile">
</td>
<td width="80"><input name="upload" type="submit" class="box" id="upload" value=" Upload "></td>
</tr>
</table>
</form>
</html>
Here is my code for the displaying the images from MySQL.
//echo "Hello ";
$errmsg = "";
if (! @mysql_connect("localhost","root","")) {
$errmsg = "Cannot connect to database";
}
@mysql_select_db("test");
$query = "SELECT content, type from pics where id = '1'";
$result = @MYSQL_QUERY($query);
$data = @MYSQL_RESULT($result,0,"content");
$type = @MYSQL_RESULT($result,0,"type");
header("Content-type: $type");
echo $data;
In this situation if I display the image without any string the it is displaying. But if I remove the comment from echo "Hello" then it is not working. I am trying to display the image in a <td></td> of table with info in other <td></td> with width amd height of <ing> tag specified.
Please let me know what is the solution regarding the situation. Thanks a lot in advance.