我有一个php / mysql web应用程序。我想在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(404),然后我将文件tw1.php粘贴到该(wordpress)文件夹中并提交,发布值进入新页面没有wordpress主题。
答案 0 :(得分:0)
创建一个名为= people with columns的表:id,firstname,lastname,DateofBirth,addressid,fatherid,motherid。每列都有合适的列属性。
答案 1 :(得分: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>