0

我有一些具有共享名称的字段。

我想插入具有数据(或值)的任何一个。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 进入表格列。没有插入该字段的实际值。

4

1 回答 1

0

尝试这个:

$mailer_type = mysql_real_escape_string(htmlspecialchars($_REQUEST['mailer_type']));

而不是发布,看看是否获得发布数据。

于 2013-10-28T14:54:30.340 回答