Posts by Francisco Pessoa • 29 points
4 posts
-
-1
votes0
answers7
viewsQ: Doubts about route nomenclatures REST
Good night, I am developing a system for a clinic in my region, and I was left with doubts about the names of the routes using the REST standard (new for me). I need to assign a professional…
-
0
votes1
answer103
viewsA: Class not found. Namespace and Composer psr-4
You are referencing "project" to "_app" folder, so you no longer need to repeat this "_app"; Ex: <?php namespace project; class User {} ... <?php require __DIR__ . "/vendor/autoload.php"; use…
-
0
votes1
answer122
viewsA: Keyword filter with other fields
To solve your problem your query must perform your SELECT going through the 3 tables, whether or not there is a filter (use LEFT JOIN if the parameters are not mandatory). After having your entire…
-
3
votes3
answers1204
viewsA: How to get the system date in Javascript?
Use the Date function: var date = new Date(); console.log(date); for more specifications, read the documentation:…