In joomla 2.5 module helper.php have a function
function hello()
{
echo " something my code";
}
In my tmpl/default.php have a text loadFunction.
echo " loadFunction";
I want, when someone click the text loadFunction then will be run function hello() . Like javascript onclick event system. How to do it in php ? Pls help