call php function from jquery code example
Example 1: call javascript function from php
// The most basic method
<?php
echo '<script type="text/javascript">',
'someJsFunc();',
'</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: call php function in js
<script>
var phpadd= <?php echo add(1,2);?>
var phpmult= <?php echo mult(1,2);?>
var phpdivide= <?php echo divide(1,2);?>
</script>
Example 3: jquery code to trigger php function
$.ajax({ url: 'phpscriptname.php',
data: {function2call: 'getEmployeesList', otherkey:otherdata},
type: 'post',
success: function(output) {
alert(output);
}
});