Posts by Eliseu Santos • 56 points
2 posts
-
4
votes1
answer3814
viewsA: How to debug PHP by Sublime Text 3?
Yes you can use Xdebug. Just install Xdebug on your system Then in the sublime install the package Xdebug-client Ready later just add the breakpoints Follow an installation and configuration link:…
-
0
votes2
answers1107
viewsA: Difficulty with AJAX and JSONP
In your page where it is executed select vc should give an echo jsonencode. Example: $query = 'SELECT * FROM TABELA'; echo json_encode($query->result()); Soon you can get the result in your ajax.…