标签: php
我想在有人点击html链接时调用PHP函数。我不知道怎么做。请帮忙。
Table Data Import Wizard
答案 0 :(得分:0)
这样做:
<a href="?sendcode=true">Didn't get a code?</a> <?php if(isset($_GET['sendcode'])){ sendCode(); } function sendCode(){ //code } ?>