For instance I have a php function
<?php
function SayHi($msg){
return $msg;
}
?>
The following part triggers the onclick event
<a href="" onclick="">Click</a>
How can I merge the two such that when I click on Click, the php function is invoked..?
<script>tags to achieve that.