- 论坛徽章:
- 0
|
图片插不到数据库里面的,
在检查的部分也看不到$pic的值,
在数据库里面pic值为空
也没有出现什么错误!
检查输入部分:
global $newsid;
global $newstitle;
global $info;
global $pic;
$time=date("Y-m-d H:i" ;
$readtime=0;
$fp=fopen($pic,"r" ;
$data=addslashes(fread($fp,filesize($pic)));
$info=nl2br($info);
$query="insert into news(title,info,pic,time,readtime) values('$newstitle','$info','$data','$time','$readtime')";
mysql_query($query);
--------------------------------------------------------
表单部分:
<form method=" OST" action=./news.php?action=<?php if($find) echo "edit_submit"; else echo "add_submit";?>; enctype="multipart/form-data">;
<tr>;<td width=30% align=right bgcolor=#c2e0a5>;
<font>;新闻标题: </font>;
</td>;
<td width=70% align=left>;
<input type=text name=newstitle size=40 maxlength=100 value=<?php echo $newstitle;?>;>;
</td>;
</tr>;
<tr>;<td width=30% align=right bgcolor=#c2e0a5>;
<font>;新闻内容: </font>;
</td>;
<td width=70% align=left>;
<img src=<?php echo $pic;?>; width=300 align=right>;
<textarea name=info rows=14 cols=60 value=<?php echo $info;?>;>;</textarea>;
</td>;
</tr>;
<tr>;<td width=30% align=right bgcolor=#c2e0a5>;
<font>;图&&&&片: </font>;
</td>;
<td width=70% align=left>;
<input type=file name=pic size=30>;
</td>;
</tr>;
<tr>;<td width=100% bgcolor=#9fcf6f colspan=2 height=20>;
</td>;
</tr>;
<tr>;
<td width=100% colspan=2 align=center>;
<input type=submit value="提 交" name=submit>;
&&&&&&&&
&&&&&&&&
<input type=reset value="重 写" name=reset>;
</td>;
</tr>;
</form>;
-------------------------------------- |
|