我有一些具有共享名称的字段。
我想插入具有数据(或值)的任何一个。jquery show and hide 一次只显示一个具有共享名称的字段。
我尝试在每个字段中使名称相同,如下所示:
mailer_type
我试着把它变成一个这样的数组:
mailer_type[]
我试着把它变成一个这样的数组:
mailer_type[mt]
为了获取帖子数据,我尝试了这个:
$mailer_type = mysql_real_escape_string(htmlspecialchars($_POST['mailer_type']));
为了获取帖子数据,我尝试了这个:
$mailer_type = mysql_real_escape_string(htmlspecialchars($_POST['mailer_type[]']));
为了获取帖子数据,我尝试了这个:
$mailer_type = mysql_real_escape_string(htmlspecialchars($_POST['mailer_type[mt]']));
为了获取帖子数据,我尝试了这个:
$mailer_type = mysql_real_escape_string(htmlspecialchars($_POST['mailer_type']['mt']));
将数据插入数据库中总是一样的。没有尝试过不同的东西:
mysql_query("INSERT jobs SET mailer_type='$mailer_type' ") or die(mysql_error());
每次我提交表单时,要么没有任何内容进入表格列,要么 0 进入表格列。没有插入该字段的实际值。