while($get_orange = mysql_fetch_assoc($select_image)){
$orange = $get_orange['image'];
$insert_test = mysql_query("INSERT INTO `image_test` (`id`,`image`) VALUES ('','".$orange."'");
}
我该怎么做?变量橙色是 blob 内容,我正在尝试将此 blob 内容插入到另一个表的另一个 blob 中。如果这是可能的,我将如何做到这一点?我的网站的许多功能都需要这个。