我想将后期数据存储到数据库中,我有动态生成的字段course[]
,start_date[]
等,我编写以下代码来检索和存储帖子数据:
但执行以下后只有'0'零存储在所有字段中。
if($this->input->post('course'))
{
$education_data= array();
for($i=0; $i<count($_POST['course']); $i++)
{
$education = array(
'course' => $this->input->post('course' . $i),
'start_date' => $this->input->post('start_date' . $i),
'end_date' => $this->input->post('end_date' . $i),
'college_name' => $this->input->post('college_name' . $i),
'other_info' => $this->input->post('other_info' . $i),
);
$this->db->insert('education',$education);
}
}
所以我尝试了第二种方法:
if($this->input->post('course'))
{
$courses = $this->input->post("course");
$startdates = $this->input->post("start_date");
$end_date = $this->input->post("end_date");
$college_name = $this->input->post("college_name");
$other_infos = $this->input->post("other_info");
$education_data= array();
for($i=0; $i<count($_POST['course']); $i++)
{
$education = array(
'course' => $courses[$i],
'start_date' => $startdates[$i],
'end_date' => $end_date[$i],
'college_name' => $college_name[$i],
'other_info' => $other_infos[$i], //line number 101
);
// Insert Education data in 'education' table
$this->db->insert('education',$education);
}
}
但在这种情况下,只有一次迭代正在运行,而在第二次迭代时,它在循环的第二次迭代中给出了一些错误。
第二次迭代中的错误:
Severity: Notice
Message: Undefined offset: 1
Filename: models/resume_model.php
Line Number: 101
A Database Error Occurred
Error Number: 1048
Column 'other_info' cannot be null
INSERT INTO `education` (`course`, `start_date`, `end_date`, `college_name`, `other_info`) VALUES ('', '', '', '', NULL)
Filename: C:\wamp\www\resume\system\database\DB_driver.php
Line Number: 330
如果有人知道,请提出解决方案。
var_dump输出:
[course] => Array
(
[0] => course1
[1] => course2
)
[start_date] => Array
(
[0] => from1
[1] => from2
)
[end_date] => Array
(
[0] => to1
[1] => to2
)
[college_name] => Array
(
[0] => univ1
[1] => univ2
)
[other_info] => Array
(
[0] => other1
)
答案 0 :(得分:1)
var_dump更新
从var_dump中可以看到other_info没有'other_info' => $other_infos[1]
,因为数组中只有一个项目。如果您希望秒代码正常工作,可以向other_info添加另一个索引。
@JoseVega更新我已更新上述问题,但错误
您的错误是声明为other_info传递的值为null,我将假设您的表架构不支持other_info列的空值。您可以更改架构以允许空值,也可以在空值时传递一个值。
尝试以下操作,并查看结果。我假设并非所有数组都具有相同的大小,这就是为什么第二次迭代失败的原因。
for($i=0; $i<count($courses); $i++) {
$education = array(
'course' => isset($courses[$i]) ? $courses[$i] : "",
'start_date' => isset($startdates[$i]) ? $startdates[$i] : "",
'end_date' => isset($end_date[$i]) ? $end_date[$i] : "",
'college_name' => isset($college_name[$i]) ? $college_name[$i] : "",
'other_info' => isset($other_infos[$i]) ? $other_infos[$i] : "",
);
// Insert Education data in 'education' table
$this->db->insert('education',$education);
}
答案 1 :(得分:1)
$ _ POST ['course']&lt; - 包含一个数组,如你所说。
所以如果你要print_r($ POST);你会看到类似的东西:
array(2) {
["course"]=>
array(3) {
[0]=>
string(5) "17740"
[1]=>
string(5) "18422"
[2]=>
string(5) "14170"
}
["startdate"]=>
array(3) {
[0]=>
string(10) "2012-01-02"
[1]=>
string(10) "2012-01-02"
[2]=>
string(10) "2012-01-02"
}
但在你的第一个代码示例中,你使用:
$ this-&gt; input-&gt; post('course'。$ i),
哪个不存在(课程12345不存在)。
在你的第二个代码示例中,你做对了:
$courses = $this->input->post("course");
现在$ courses保存了数组,你似乎在循环中使用它进行随意检查(也许我会错过一些东西)。
我怀疑你最好用简单的
开始调试echo "<pre>";
print_r($_POST);
echo "</pre>";
并确保您收到预期收到的内容。 我怀疑你没有发布你认为发布的所有内容。
确保所有使用过的数组中的元素与在课程数组中一样多。
如果没有看到$ _POST的实际内容,很难提供更多建议。