0
我有一個php/mysql的web應用程序。我想將它轉換成wordpress插件。我怎樣才能將一個php文件鏈接到另一個文件。 例如,我有插件tw。 tw.php是其索引文件,另一個文件名是tw1.php。我想將一個php/mysql應用程序轉換成一個wordpress插件
第一頁
/* 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提交值,錯誤出現tw1.php在WordPress夾未找到(404),然後我粘貼文件tw1.php在該(wordpress)文件夾中,並提交,發佈值得到新的頁面沒有wordpress主題。