我正在尝试使用 php 中的 html 表单传递参数,我有一个填充 html 表的 php 页面:
$html = '';
$html .= '<form id="form1" action="search.php" method="post">';
$html .= '<tr>';
$html .= '<td>id</td>';
$html .= '<td><a href="javascript:;"onclick="document.getElementById(\'form1\').submit();">name</a></td>';
$html .= '<td>surname</td>';
$html .= '<td>language_id</td>';
$html .= '<td><span class="label label-success">Status_code</span></td>';
$html .= '</tr>';
$html .= '<input type="hidden" name="mess" value=\'Hello\'>';
$html .= '</form>';
我可以在我的 html 中看到表格,当我点击 href 时,search.php 页面打开了,但我看不到“Hello”值,这是 search.php:
<?php
$name0 = $_POST['mess'];
echo $name0;
?>
怎么了?