PDA

View Full Version : سوال: ذخیره عکس



yasin5
جمعه 09 اسفند 1392, 13:41 عصر
با سلام کد زیر مشکل چیه که تمام اطلاعات ثبت میشود اما عکس ذخیره نمیشود


<?php
include ("../../config/config.php");
include ("../../config/funcs.php");
if(isset($_POST['catid']))
{

$s = $_FILES['pic']['size'];
$t = $_FILES['pic']['type'];
$n = $_FILES['pic']['tmp_name'];
$fp = fopen($n, 'r');
$pic = fread($fp, filesize($n));
$query="insert into tblproducts (catid, name, gheymat, pic, tozihat)
values('".$_POST['catid']."','".$_POST['name']."','".$_POST['gheymat']."','$pic','".$_POST['tozihat']."')";
mysql_query($query);

}
?>




include ("../../config/config.php");
$id=intval($_GET['id']);
if(isset($id))
{
$query="select * from tblproducts where productid='$id'";
$result=mysql_query($query);
$row=mysql_fetch_array($result);
if(mysql_num_rows($result)==1)
{

//header("Content-Type:".$row["type"]);
exit($row["pic"]);


}


}