Posts by Gabriel Filippi • 67 points
12 posts
-
-1
votes1
answer70
viewsQ: Duplication of PHP data
I have a very large page (Main software flow). I’m experiencing a problem that rarely happens, but sometimes the request is duplicated, as if I had sent twice the same form, only no, I just clicked…
-
1
votes2
answers4248
viewsQ: Error "Fatal error: Cannot redeclare (Previously declared)"
I have a notification button, where it shows the last requests that will come out in the system, I wanted to add the time that he has already left. Ex.: 4 minutes ago, 1 hour ago, and when it was…
phpasked Gabriel Filippi 67 -
0
votes2
answers134
viewsQ: Notification button update
I have a notification button on my software where I wanted it to automatically update itself. So I made the following code: setTimeout(mostrarNotificacao, 90000); function mostrarNotificacao(){…
-
0
votes1
answer179
viewsQ: Problems When passing data via ajax
I have a form where it is validated by jqBootstrapValidation.js, and is sent to another file, which is the file below: // Contact Form Scripts $(function() { $("#usuariosForm input,#usuariosForm…
-
1
votes2
answers1424
viewsA: How to view data from a query in Modal?
On my website I use the following codes: In this first situation I use the tag , where I save the id to make the query. see: <a href="#" title="Visualizar Pedido Por Inteiro" data-toggle="modal"…
-
1
votes1
answer95
viewsA: Validation bug with javascript
I separated in eventListener different, see: $(document).ready(function() { $('input:radio[name="rdRetirar"]').on("change", function() { if (this.checked && this.value == 'sim') { rdRetirar…
-
0
votes1
answer95
viewsQ: Validation bug with javascript
I have an order registration page, where if the user selects the "no" option in the checkbox, it means that the order is for delivery if he selects "yes", he comes to remove the product in the…
-
0
votes1
answer120
viewsQ: Problems with login cookies
In the login page send the form with your login data, record the data in cookies and redirect to another page. But I am suffering problem if the user logout, I wanted to delete the cookies, on the…
-
1
votes1
answer812
viewsQ: Problems with Phpexcel columns
I started to perform the development on my system to generate a file . xls in a very dynamic way. Where you receive the data from a page via POST, and are saved in variables, follow the code:…
-
0
votes1
answer68
viewsQ: Error in Javascript variable
I have the following javascript code below which occurs the following error Uncaught Referenceerror: rdIdem is not defined at Htmlinputelement (ff_admin.php?…
-
0
votes2
answers87
viewsQ: New schedule scheme - Database
I have an order system, where the delivery time of the product is selected in a normal input of the type='time', and stored in the database in time type as well. Everything is working perfectly, but…
-
-1
votes1
answer82
viewsQ: Query with a specified date - PHP
Hello, I have an order query, where I just wanted to show the orders of the current day and also the orders of the next day, where the orders of the next day would only appear those that would have…