3つのフィールドを持つテーブルimage_tbがありますid,images,link
(idはauto auto_incrementです)。これは私の挿入コードです。
mysql_query("
insert into image_tb
(images,link)
select
'".(max(id)+1).".jpeg','".$link."'
from image_tb
");
それは戻ります:
Warning: max(): When only one parameter is given, it must be an array
変更する方法は?ありがとう。