ccat 发表于 2005-8-10 03:26:37

如何实现一个按钮调用php里面的一个函数

这两段都在一个php里:study2.php

<form method = "post" action ="study2.php">
<input name="botton1" type="button"value="testphp" >
</form>



<?php

if ($check1)
{testphp();}

意思是点击testphp按钮就可以测试php的状态

怎么让他们俩勾搭在一起?

涩兔子 发表于 2005-8-10 09:14:01

如果点击了botton1按钮...


if ( isset($_POST['botton1']) ) {
    do your stuff here such as test php's state...
}

ccat 发表于 2005-8-10 16:06:24

不好意思,打错了
<?php
function testphp()
{
phpinfo();
}
?>

涩兔子 发表于 2005-8-10 16:14:35


if ( isset($_POST['botton1']) ) {
    // do your stuff here such as test php's state...
    phpinfo();
    ...
}

ccat 发表于 2005-8-10 16:17:44

<input name="botton1" type="button" value="testphp" >
这个就这么写?那他能知道送给的是 testphp这个函数?

涩兔子 发表于 2005-8-10 16:26:30

表现层
<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();
    ...
}

jiangtao9999 发表于 2005-8-10 18:21:20


if ( isset($_POST['botton1']) ) {

if ( $_POST['botton1'] == "测试PHP" ) {

:neutral:
这样能明白了吧?

ccat 发表于 2005-8-10 18:53:07

:lol:
明白了,可以了,谢谢各位。
我已经感受到linux的热情了。
我会把热情继续的
页: [1]
查看完整版本: 如何实现一个按钮调用php里面的一个函数