I have a jquery that calls an ajax call to another php file and cannot work, how to get netbeans and xdebug to stop at a breakpoint in this file. EG:
index.php
function ajaxfunc(){ ... }
other.php
<?php echo Whatever::doit(); class Whatever(){ public function doit(){ $stopme="now"; } } ?>
Netbeans stops in index.php code but not in other.php
source share