Dear Abu,
In the example of custom-events, the function of update_client is called like this:
$e["on_insert"] = array("add_client", null, false);
function update_client($data)
{
command here
}
The above sample is use 1 variable. But how to call the function that use 2 variebles?
For example:
function update_client($data, $var2)
{
command here
}
1 Answers
Your Answer