如何实现一个按钮调用php里面的一个函数
这两段都在一个php里:study2.php<form method = "post" action ="study2.php">
<input name="botton1" type="button"value="testphp" >
</form>
<?php
if ($check1)
{testphp();}
意思是点击testphp按钮就可以测试php的状态
怎么让他们俩勾搭在一起? 如果点击了botton1按钮...
if ( isset($_POST['botton1']) ) {
do your stuff here such as test php's state...
}
不好意思,打错了
<?php
function testphp()
{
phpinfo();
}
?>
if ( isset($_POST['botton1']) ) {
// do your stuff here such as test php's state...
phpinfo();
...
}
<input name="botton1" type="button" value="testphp" >
这个就这么写?那他能知道送给的是 testphp这个函数? 表现层
<form action="./test.php" method="post" name="test">
<input name="botton1" type="submit" value="测试PHP" >
</form>
业务逻辑层
/**
* if ccat click "测试PHP", then...
*/
if ( isset($_POST['botton1']) ) {
// do your stuff here such as test php's state...
phpinfo();
...
}
if ( isset($_POST['botton1']) ) {
if ( $_POST['botton1'] == "测试PHP" ) {
:neutral:
这样能明白了吧? :lol:
明白了,可以了,谢谢各位。
我已经感受到linux的热情了。
我会把热情继续的
页:
[1]