php上传到服务器的图片路径如何通过表单插入mysql数据库对应字段中
$goods_img返回值是上传到服务器的图片名及其路径,如何通过表单将这个返回值保存到数据库对应字段里...
$goods_img返回值是上传到服务器的图片名及其路径,如何通过表单将这个返回值保存到数据库对应字段里
展开
1个回答
展开全部
要把表单数据通过传到数据库那需要写sql的吧,有了路径直接把路径更新或者插入到数据库
<?php
$con = mysql_connect("localhost","root","");
mysql_select_db("database",$con);
mysql_query("set names utf8");
$sql="";//把$string更新或者插入sql insert into `table` (`img`) values ('$goods_img') 或者 update `table` set img='$goods_img' where xxx='xxx';
mysql_query($sql);
//上述为示例,操作方法如此
<?php
$con = mysql_connect("localhost","root","");
mysql_select_db("database",$con);
mysql_query("set names utf8");
$sql="";//把$string更新或者插入sql insert into `table` (`img`) values ('$goods_img') 或者 update `table` set img='$goods_img' where xxx='xxx';
mysql_query($sql);
//上述为示例,操作方法如此
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询