存儲陣列這是我如何存儲陣列到我的數據庫(的一個更大的代碼部分):如何顯示從數據庫
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";
}
仍然沒有工作:/ –