在下面的代码中,我有一个有标题和按钮的div。我想,每当用户点击按钮,在php函数编写的消息显示。但当我运行代码时,它什么也没有显示。
<div>
<h2>Mark Your Attendence</h2>
<button onclick="clicked">Present</button>
<?php
function clicked()
{
echo "You are Present.";
}
?>
</div>