单击html链接时调用php函数

时间:2017-02-19 05:53:56

标签: php

我想在有人点击html链接时调用PHP函数。我不知道怎么做。请帮忙。

Table Data Import Wizard

1 个答案:

答案 0 :(得分:0)

这样做:

<a href="?sendcode=true">Didn't get a code?</a>
<?php
if(isset($_GET['sendcode'])){
    sendCode();
}
function sendCode(){
    //code
}
?>