Hi,
I have a button in my php code and when its pressed I want to call my local routine, defined in the same file.
e.g. Send A Password button
So, when a client clicks the button I want to call send_a_pass() defined in the same file.
echo "<form method=post action=???>";
echo "<input type = submit value =\" Send A Password \">" ;
send_email($apass, $details) {
}
Thank you very much for your help!!
Leon