0

我有一个 php/mysql 网络应用程序。我想将其转换为 wordpress 插件。如何将一个 php 文件链接到另一个文件。例如我有插件 tw。tw.php 是它的索引文件,另一个文件名为 tw1.php。

第一页

/* plugin name:tw
 plugin url:httpL://csr.estheticsolutions.com.pk
*/

//tell wordpress to register the demolistposts shortcode
add_shortcode("demo-list-posts", "demolistposts_handler");

  function demolistposts_handler()  
    {
    //run function that actually does the work of the plugin
     $demolph_output = my_function();
     //send back text to replace shortcode in post
      return $demolph_output;
     }


 function my_function()
     {
?>
          <html>
          <body>          


               <form   action="tw1.php" method="post">
                       <input  type="text" name="fname"  >
                       <input type="submit" value="Submit" >
                </form>


          </body>
          </html>
 <?php


  }


 ?>

第二页

<?php

 $First_Name=$_POST['fname'];
echo $First_Name;

?>

当我在 tw.php 中提交值时,在 wordpress 文件夹中出现错误 tw1.php not found(404),然后我将文件 tw1.php 粘贴到该(wordpress)文件夹中并提交,发布的值进入没有 wordpress 主题的新页面.

4

2 回答 2

0

创建一个 name=people 的表,列:id、firstname、lastname、DateofBirth、addressid、fatherid、motherid。每列都有合适的列属性。

于 2012-06-21T02:33:50.840 回答
0

您可以使用插件 url 函数链接到第二个文件:

           <form   action="<?php echo plugins_url( 'tw1.php', dirname(__FILE__) ); ?>" method="post">
                   <input  type="text" name="fname"  >
                   <input type="submit" value="Submit" >
            </form>
于 2019-06-10T10:52:52.667 回答