Posts by helderam • 75 points
5 posts
-
0
votes1
answer32
viewsA: Query using Inner Join and left Join data together
Make a LEFT Join of the table out with the entry table as well, the records that come with NULL in the entry table, it is because the vehicle has not returned yet. select s.veiculo_id, e.veiculo_id…
-
1
votes1
answer1595
viewsQ: General error: 1449 when fetching Mysql Database records
I am getting the error below while doing SELECT: SELECT * FROM vn_horario_view; SQLSTATE[HY000]: General error: 1449 The user specified as a Finer ('root'@'localhost') does not exist How to resolve…
-
3
votes2
answers984
viewsQ: How to make jQuery Chosen disregard accentuation at the time of the search?
I developed a website that uses jQuery Chosen, and would like him to did not consider the accents at the time of the search. For example, I have a list with several names, and I need to look for…
-
2
votes1
answer1006
viewsQ: How do I use DOMPDF in Laravel 4 in conjunction with a BLADE view?
I need to generate PDF report in Laravel 4. I have found several alternatives and I am in doubt about which best option: DOMPDF (alternate link) It seems very easy to use, since it’s our good old…
-
0
votes2
answers1735
viewsA: Date being recorded wrong in m-d-Y bank instead of Y-m-d
I have used HTML5’s "date" attribute that 2 advantages: No need to convert to show on screen, because HTML5 makes automatic. Brings a calendar for the user to choose the date using the mouse. In…