如何从sql数据库中显示存储的数组

时间:2013-07-14 21:26:34

标签: php sql arrays loops foreach

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

echo'';

    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>';

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

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

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

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

当前特定周:

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

1 个答案:

答案 0 :(得分:1)

尝试以下

foreach ($currentWeeks as $weeks)
{
    // echo each field from mysql table
    echo $weeks['column_Name'];

   // print all data as array
    print_r($weeks);
}