Posts by Josias Bueno • 13 points
5 posts
-
0
votes0
answers1814
viewsQ: How to access local network site by typing the virtual address (vhost)?
Talk personal. All right? Come on! I’ve been using Xampp for a long time to develop, host and access my sites locally. In the folder htdocs create my directories, as default (meusite1, meusite2,…
-
1
votes1
answer431
viewsQ: How to view PHP errors using Ajax and JSON?
You know those error messages that PHP returns when we write some wrong code or, for example, we call some variable that doesn’t exist, or we even try to include a non-existent file. When we make an…
-
0
votes1
answer72
viewsQ: Problem passing some Json messages to Jquery
Guys, I have a form that is passed to my PHP via Ajax in Jquery and returns the result via Json to my console. Follow a snippet of code in PHP. if($tabela == 'setup') { if(isset($_POST['nome'])){…
-
0
votes0
answers151
viewsQ: Separate Mysql output in blocks in PHP
I have a table of properties divided into several categories and I want to list them on my PHP page. The detail is that I wish that in one region of the page be listed the houses, in another the…
-
0
votes1
answer87
viewsQ: How to display number of records by category in PHP and Mysql
I have a real estate table in Mysql divided into 6 categories. I want to make a query that returns the number of records for each category. The only way I know so far is to make a query for each…