我正在尝试通过post方法提交表单。但每次表单提交和页面刷新。它没有显示价值。
<?php echo $_POST['fname']; ?>
<form method="POST" action='#.php'>
<input type="text" name="fname" id="fname" />
<button id="check" name="check" type="submit">GO</button>
</form>
重点是什么,我错过了?
答案 0 :(得分:1)
试试这个:
<?php echo $_POST['fname']; ?>
<form method="POST" action=""> <!-- not single quote -->
<input type="text" name="fname" id="fname" />
<input type="submit" name="value" >
</form>
答案 1 :(得分:0)
试试这个......
echo "<pre>";
print_r($_POST);
if($ _SERVER [&#39; REQUEST_METHOD&#39;] ==&#39; POST&#39;){
<form name="test" action="" method="post"><input type="text" name="firstName" /><input type="submit" name="Submit" /></form>
} ?&GT;
[self dismissViewControllerAnimated:YES completion:nil];
答案 2 :(得分:-1)
我建议写更清洁的方式。像这样:
int total = n;
int average = n;