我目前正在尝试创建一个超链接,它调用我所在的同一页面,但使用不同的 PHP 函数。这似乎是一个足够简单的解决方案,但是我不希望 URL 中显示任何信息。“帖子”似乎是最好的解决方案,但我找不到任何关于如何完成这项工作的结果。
<?php
function myFirst(){
echo 'The First ran successfully.';
}
function mySecond(){
echo 'The Second ran successfully.';
}
?>
<html><body>
<?php
if (isset($_GET['run'])){
$linkchoice=$_GET['run'];
}else{
$linkchoice='';
}
switch($linkchoice){
case 'first' :
myFirst();
break;
case 'second' :
mySecond();
break;
default :
echo 'no run';
}
?>
<hr>
<a href="?run=first">Link to First</a>
<br/>
<a href="?run=second">Link to Second</a>
<br/>
<a href="?run=0">Refresh No run</a>
</body></html>