我的表单上有一个隐藏字段,我想在一个数组中整理和发布与价格相关的日期,以便我可以在另一个页面上使用它们。目前,我在下面定义了以下输入字段。
<input name="arrayDatesPrices[]" type="hidden"
value="<?php echo PrintDateTime($recordsCourseWeeks->getField('Start_date'),"d/m/Y"); ?>">
当我在下一页上执行 print_r(arrayDatesPrices) 时,它会列出数组中的所有日期。这完全符合预期。我有另一个名为 $Price_per_week 的字段,我想将价格与日期相关联。因此,我尝试了以下方法。
<input name="arrayDatesPrices[]" type="hidden"
value="<?php echo array(PrintDateTime ($recordsCourseWeeks->getField('Start_date'),"d/m/Y"), array( $Price_per_week) ); ?>">
当我在后续页面上执行 print_r(arrayDatesPrices) 时 - 我得到一个空白数组。我的格式是否不正确,或者你可以做多维数组输入字段吗?