在表单提交时调用特定的PHP函数

我试图在表单提交中调用特定的php函数,表单和php脚本都在同一页面中。我的代码如下(它不起作用,所以我需要帮助)

<html>

<body>

<form method="post" action="display()">

<input type="text" name="studentname">

<input type="submit" value="click">

</form>

<?php

function display()

{

echo "hello".$_POST["studentname"];

}

?>

</body>

</html>

回答:

在下一行

<form method="post" action="display()">

该动作应该是脚本的名称,并且应该调用该函数,就像这样

<form method="post" action="yourFileName.php">

<input type="text" name="studentname">

<input type="submit" value="click" name="submit"> <!-- assign a name for the button -->

</form>

<?php

function display()

{

echo "hello ".$_POST["studentname"];

}

if(isset($_POST['submit']))

{

display();

}

?>

以上是 在表单提交时调用特定的PHP函数 的全部内容, 来源链接: utcz.com/qa/428297.html

回到顶部