提交我有一個表格:
<form action="<?php echo the_permalink(); ?>" method="POST">
<input type="text" name="name" value="" placeholder="Your First and Last Name *" />
<?php echo $firstnameError; ?>
<input type="text" name="email" value="" placeholder="Yoyr Email" />
<?php echo $emailError; ?>
<br>
<input type="text" name="company" value="" placeholder="Your Company Name" />
<input type="text" name="phone" value="" placeholder="Your Phone number" />
<textarea name="project" rows="4" cols="50" placeholder="Describe the scope of work and the most important features of the project *'"></textarea>
<?php echo $addressError; ?>
<br>
<input type="radio" name="budget" value="1500" />
<input type="radio" name="budget" value="2500" />
<input type="radio" name="budget" value="5000" />
<input type="radio" name="budget" value="10000" />
<input type="radio" name="budget" value="100001" />
<input type="radio" name="budget" value="not sure" />
<input type="hidden" name="submit" value="1" />
<input type="submit" value="SUbmit" />
</form>
它的動作相同的頁面,但是當我做print_r($_POST);
它不顯示任何信息,在$_POST
即沒有價值。
這可能是什麼原因?我在這個問題上研究了幾個問題,但沒有人給我我正在尋找的答案。
你忘掉了'i'在'action'屬性 – JoDev 2013-04-04 12:22:38
@JoDev這是一個錯字 – 2013-04-04 12:25:13
非官方#1#規則(而不是** **阿克頓「行動」) 1,**不要輸入問題。總是,我總是重複複製/粘貼** – itachi 2013-04-04 12:35:03