4

私はフォームを持っています:

<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

この理由は何ですか?これについてSOに関するいくつかの質問を調べましたが、探していた答えはありませんでした。

4

5 に答える 5

4
<form action="<?php the_permalink(); ?>" method="POST">

echo する必要はありませんthe_permalink()

これは私のために働く:

<?php print_r($_POST);?>
<form action="" 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>
于 2013-04-04T12:24:28.620 に答える
3

これを変える

acton="<?php echo the_permalink(); ?>"

action="<?php echo the_permalink(); ?>"
于 2013-04-04T12:21:25.580 に答える
-3

解決:

リクエストの問題により、wordpress サイトではなく

<form action="http://example.com/">...

.php ファイルを指定する必要がある場合があります。例:

<form action="http://example.com/index.php">...  


//////ps エコーは自動的に行われますthe_permalink()[同じです:echo get_permalink()

于 2014-11-20T11:58:57.173 に答える