Posts by Vinicius da Silva • 131 points
5 posts
-
1
votes1
answer53
viewsA: Database update problems using PHP
Dude, by the example of your table that you posted, your "code" field (which I’m imagining is your PRIMARY KEY) is like NULL, probably it should be NOT NULL and AUTO_INCREMENT.
-
0
votes1
answer39
viewsA: What is the correct way to increment multiple inputs of a php array
Dude, it depends on what you need. If you need to use it, you need to create an array that way. You have to think about how it will be used at the end and if this out you will be able to interact.…
-
5
votes1
answer731
viewsA: Uncaught Exception 'Dompdf_exception' with message 'No block-level Parent found. Not good. '
I’ve had this problem in the past and this code saved my day. Try to check for spaces between HTML tags. Try to use this code, it removes any space between the TAGS $html =…
-
0
votes3
answers327
viewsA: Upload a file with parameters in Silex with Angular-File-Upload
The solution I found was to search the data via environment variable $_POST, I didn’t think it was right to be using a framework, but it worked.
-
4
votes3
answers327
viewsQ: Upload a file with parameters in Silex with Angular-File-Upload
I am doing a work with Angular (version 1.5.8) and using Silex as Web Service. To send the file to the Web Service I am using Angular-File-Upload (version 1.5.1) and my Angular service is like this:…