我希望表单提交id,工作日,月,月 - 日,时间,时区,年份,内部本地IP和内部全局IP,最终以$ _POST结尾。但是,时区不起作用,我不知道为什么。时区由SELECT元素控制,每个标签的名称为' tz'。
以下是视图中表单的代码:
<form action='/mysecureview/admin_view/log_index.php' method='post'>
<ul>
<input type='hidden' value='<?php echo $id; ?>' name='id'>
<li><label>weekday</label><input <?php echo (($weekday_error == TRUE)?"id='weekday_error'":'')?> type='text' value='<?php echo $wd; ?>' name='wd'></li>
<li><label>month</label><input <?php echo (($month_error == TRUE)?"id='month_error'":'')?> type='text' value='<?php echo $m; ?>' name='m'></li>
<li><label>month-day</label><input <?php echo (($month_day_error == TRUE)?"id='month_day_error'":'')?> type='text' value='<?php echo $md; ?>' name='md'></li>
<li><label>time</label><input <?php echo (($time_error == TRUE)?"id='time_error'":'') ?> type='text' value='<?php echo $t; ?>' name='t'></li>
<select>
<option value="0">Please, select timezone</option>
<?php
foreach(tz_list() as $t) { ?>
<option value="<?php print $t['zone']?>"<?php echo "name='tz'";?> >
<?php print $t['diff_from_GMT'] . ' - ' . $t['zone'] . ' ';
?>
</option>
<?php } ?>
</select>
<li><label>year</label><input <?php echo (($year_error == TRUE)?"id='year_error'":'') ?> type='text' value='<?php echo $y; ?>' name='y'></li>
<li><label>inside local IP address</label><input <?php echo (($ilp_error == TRUE)?"id='ilp_error'":'') ?> type='text' value='<?php echo $ilp ?>' name='ilp'></li>
<li><label>inside global IP address</label><input <?php echo (($igp_error == TRUE)?"id='igp_error'":'') ?> type='text' value='<?php echo $igp ?>' name='igp'></li>
<li><input type='submit' value='submit' name='show'></li>
<input type='hidden' value='update-log' name='action'>
</ul>
</form>
在控制器中,我使用 后续代码var_dump($ _ POST); 得到以下输出:
array(10) {
["id"] "3"
["wd"] "Mon"
["m"] "Mar"
["md"] "4"
["t"] "15:01:43"
["y"] "2015"
["ilp"] "10.18.149.220"
["igp"] "127.221.137.254"
["show"] "submit"
["action"] "update-log"
}
为什么PHP没有通过$ _POST [&#39; tz&#39;]发送时区?
答案 0 :(得分:0)
您需要将name
提供给select
代码
<select name="tz">
<option value="0">Please, select timezone</option>
<?php
foreach(tz_list() as $t) { ?>
<option value="<?php print $t['zone']?>"<?php echo "name='tz'";?> >
<?php print $t['diff_from_GMT'] . ' - ' . $t['zone'] . ' ';
?>
</option>
<?php } ?>
</select>
答案 1 :(得分:0)
因为您的<select>
没有name
属性
答案 2 :(得分:0)
将选择标记设为名称属性
<select name="tz">
<option value="0">Please, select timezone</option>
<?php
foreach(tz_list() as $t) { ?>
<option value="<?php print $t['zone']?>"<?php echo "name='tz'";?> >
<?php print $t['diff_from_GMT'] . ' - ' . $t['zone'] . ' ';
?>
</option>
<?php } ?>
</select>
答案 3 :(得分:0)
使用没有名称标签的select标签添加name属性你无法在任何输入字段的php $ _POST变量中获取它