Posts by Anderson Silva • 24 points
3 posts
-
-1
votes2
answers518
viewsA: Import database without table data directly from Mysql
Ai you have to separate the creation lines and the Insert in separate files, so when you want to import only the tables you import for example the.sql tables file and vice versa sql tables.: CREATE…
mysqlanswered Anderson Silva 24 -
1
votes2
answers4597
viewsA: Include menu in all pages
Good morning, you can create separate files in php and give require_once to import it anywhere on the page, including in other files, this is very useful not to rewrite the code every time in each…
-
-1
votes2
answers168
viewsA: Grouping invoices in php mysql delay
There is no reason to write the name of each column of the table if it will get all. The above query is not wrong, there is only unnecessary redundancy! Optimized: SELECT * FROM faturas WHERE status…