我有这个 php 代码(view.php)
然后我有 php 代码(mysql_connect.php)
和 MySQL
CREATE TABLE IF NOT EXISTS `menu` (
`no` int(100) NOT NULL AUTO_INCREMENT,
`ref` varchar(30) NOT NULL,
`course` text NOT NULL,
`name` text NOT NULL,
`price` int(10) NOT NULL,
`description` text NOT NULL,
`picture` longblob NOT NULL,
PRIMARY KEY (`no`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=8 ;
显示图像的问题。为什么我不能显示我的图像?