php script call function code example
Example 1: call javascript function from php
// The most basic method
<?php
echo '<script type="text/javascript">',
'someJsFunc();', // Or Whatever
'</script>';
?>
// However, if what you are trying to achieve requires more complexity,
// You might be better off adding the V8JS module, see link below
Example 2: execute function php
function functionName() {
//code to be executed;
}
functionName();