web-dev-qa-db-ja.com

wordpressプラグインで別のページにフォームを送信する方法

wordpress pluginを開発しています。これは、フォームを別のページに送信します。ただし、フォームを別のページに送信しようとすると、そのページはphpエラーを返します。私のフォームコードは以下のとおりです

echo "<form action='".plugins_url()."/wp_voting_poll/frontend_poll_process.php'     method='post'>";
echo "<input type='hidden' name='hide' value='$ques' />";
        $total_vote_count = $wpdb->get_var( "SELECT COUNT(*) FROM $table_result WHERE question_uid='$ques'" );
        if($ques!=""){
        echo "<table>";

        foreach($ans_data as $ans_res){

         //   $ans=$ans_res->answer;
         $answer_id=$ans_res->id;
         $type=$ans_res->answer_type;


               $vote_count = $wpdb->get_var( "SELECT COUNT(*) FROM $table_result WHERE answer_id='$answer_id'" );
                if($vote_count==0){
                    error_reporting(0);
                }
                $vote_percent=($vote_count*100)/$total_vote_count;
             echo "<tr> <td>";  
           echo "<div class='answer_div'>";    
               if($type==1){
             echo "<div class='input'><input type='radio' name='ans_name[]' value='$answer_id'/>".$ans_res->answer."<br/></div>";
             }
             elseif($type==0){

             echo "<div class='input'><input type='checkbox' name='ans_name[]' value='$answer_id'/>".$ans_res->answer."<br/></div>";
             }
             if($backend==0){
             echo "</td> <td>";


             echo "<h4> total vote counted $vote_percent% </h4>";

            // echo "<img src='$url' width='$width_img'/>";
             $bar=$vote_percent*5.9;
             echo "<img src='$url' height='10' width='$bar' />";        

             echo "</td></tr>";
             }
        }
        echo "</table>";

        echo "<input type='submit' value='Submit vote' />";
        echo "</form>";

そして、これはフォームを処理する別のページの私のコードです。しかし、残念ながらそれはphpエラーを返します。

<?php

require_once("function_ip.php");
$vote_result=$_POST['ans_name'];
$uid=uniqid();
global $wpdb;
$table_vote=$wpdb->prefix."poll_answer_result";
$count=count($vote_result);
 $hidden=$_POST['hide'];

$ans_data=$wpdb->get_results("SELECT  * FROM $table_vote WHERE question_id='$hidden'" );

if($count>0){
foreach($vote_result as $vote_arr){

    $wpdb->insert($table_vote,
                array('answer_id' => $vote_arr,
                      'ip' =>get_client_ip(),  
                      'question_uid' => $hidden
                        ));
 }

}

?>
16
Mushfiqul Tuhin

Wordpressには、すべてのフォームを処理するための汎用ハンドラーadmin-post.phpがあります。

フォームにactionという非表示フィールドを含めると、wordpressのすべての良さを含めて、選択した関数にフックできます。

echo "<form action='".get_admin_url()."admin-post.php' method='post'>";

    echo "<input type='hidden' name='action' value='submit-form' />";
    echo "<input type='hidden' name='hide' value='$ques' />";

    { Enter the rest of your first block of code from above here }

echo "</form>";

次に、functions.phpファイル(またはfunctions.phpを使用してインクルードしたその他のphpファイル)で、このメソッドを使用できます。

add_action('admin_post_submit-form', '_handle_form_action'); // If the user is logged in
add_action('admin_post_nopriv_submit-form', '_handle_form_action'); // If the user in not logged in
function _handle_form_action(){

    { Enter your second block of code from above here }

}

目的の目的地に到達したときにリダイレクトが必要かどうかはわかりませんが、そうすることで簡単に説明できます。

そして最後の質問です-このフォームはフロントエンドですか、それとも管理領域ですか?この答えは違いをもたらすはずではありませんが、私は興味があります...

31
David Gard

_frontend_poll_process.php_ページがWordPress環境から呼び出されているため、$wpdb->get_results()でエラーが返されます。

フックを使用して、プラグインまたは_functions.php_にコードを追加できます。

_<?php
add_action( 'after_setup_theme', 'so_19997913' ); 

function so_19997913() {
  require_once("function_ip.php");
  $vote_result = $_POST['ans_name'];
  $uid = uniqid();
  global $wpdb;
  $table_vote = $wpdb->prefix . "poll_answer_result";
  $count = count( $vote_result );
  $hidden = $_POST['hide'];

  $ans_data = $wpdb->get_results( "SELECT  * FROM $table_vote WHERE question_id='$hidden'" );

  if ( $count > 0 ) {
    foreach ( $vote_result as $vote_arr ) {

      $wpdb->insert( $table_vote, array('answer_id' => $vote_arr,
        'ip' => get_client_ip(),
        'question_uid' => $hidden
      ) );
    }
  }
}
_
1
RRikesh