-2

这就是我将数组存储到我的数据库中的方式(更大代码的一部分):

 echo '<form action="" method="post">';

        for ($count = 0; $count < $_GET["entries"]; $count++)
        {
            echo  'Enter a beginning to ending date for the week: <input type="text" name="week"><br/>';
        }

        echo '<input type="submit" name="submit"></form>';

它在标签内,因此是回声。

我检查了我的数据库,我可以看到第一个日期,所以它正在被存储。

这就是我显示数组的方式(似乎不起作用):

我哪里错了?它只是输出还是输入?对于可能的答案,我真的很感激任何建议。谢谢。

Current Specific Weeks: <?php 

    foreach ($currentWeeks as $currentWeeks)
    {
        echo "{$currentWeeks}\n";
    }
4

2 回答 2

1

Foreach 错误。您正在使用$currentWeeks数组和元素。

于 2013-07-14T12:15:59.837 回答
1

foreach在循环中使用不同的变量名

foreach ($currentWeeks as $week)
                          ^^^^^ // here
{
    echo "{$week}\n";
}
于 2013-07-14T12:16:01.877 回答