无法使用PHP将图像插入表中

时间:2019-04-17 14:54:57

标签: php mysql image insert

我正在尝试将一张桌子的图像上传到另一张桌子。除非我摆脱了'$re[4]'(可能是图像的十六进制值),否则代码不会运行。如何将图像插入到table2中?谢谢。

$data=mysql_query("SELECT * FROM `table1` WHERE `name` LIKE 'a'"); 
$rs=mysql_fetch_row($data);
mysql_query("INSERT INTO `table2` (`a`, `b`, `c`, `d`, `image`) VALUES
('$rs[0]', '$rs[1]', '$rs[2]', '$rs[3]', '$rs[4]');");

0 个答案:

没有答案