paul is right, you can't call a server-side function directly from a hyperlink, but you can pass a variable inside the link via:
http://....../your_page.php?variable=value
Then in your_page.php, you can check for this variable via:
isset($variable)
And then if the $variable exists, jump into the function...