Posts by Aloiso Gomes • 508 points
18 posts
-
0
votes2
answers44
viewsA: PHP repeating commands
A solution would be within the "click" you disable the working of the button and in the ajax response you rehabilitate the button. This will prevent duplicate submits. VC can improve even more by…
-
1
votes1
answer21
viewsA: Prevent double submission of forms in Submit
Try to put an attribute in the form onSubmit="return false" after you have made your validations remove the attribute onSubmit and call .submit() for your form as you suspended the automatic Submit…
-
0
votes1
answer33
viewsA: Efficiency in querys with different schemas [Mysql]
Independe, What really needs to be taken into account are the indexes, so always in JOIN you need to use indices to do the search yes will bring efficiency and robustness to your query!
-
0
votes2
answers71
viewsA: how to create numbers in different variables in JS javascript
Hello I created a function that meets what you would like, but certainly you will refine as your need, but generally should help you at least to find something that is ideal. Below follows her with…
javascriptanswered Aloiso Gomes 508 -
0
votes2
answers365
viewsA: Problems sending data to the Ionic database
Fala Brother, Of course the error is on the server, probably you are trying to get the data using the array $_POST, I’m sorry to inform you this won’t work, but don’t worry there’s something easy…
-
0
votes2
answers109
viewsA: Doubt about vertical and tableless alignment
Hadrian, Even not using table you are still thinking "like tables" and it shouldn’t be so, you need to think of building tableless layouts as "blocks". Imagine building a wall, each block will have…
htmlanswered Aloiso Gomes 508 -
0
votes1
answer377
viewsA: send to another page after AJAX
just reverse the order of the commands! swal('Sucesso!', 'Entrada realizada com sucesso!', 'success'); window.open("ficha-tecnica.php?id_ficha="+id_ficha,'_blank');
-
3
votes1
answer1020
viewsA: Calculate the number of hours between two hours and turn into float
There is a concept problem, in case 2 hours and 30 minutes floating point should be represented as 2.50 this because 1 hour which in case is evaluated as 1.0 floating point is 60 minutes, starting…
-
3
votes4
answers1970
viewsA: How to abbreviate words in PHP?
Come on, my dears, when we abbreviate first names in PHP the task is simple, we must note that here in Brazil the names that must be kept in full if possible must be the first name and the last…
-
2
votes2
answers1092
viewsA: Comparison between 2 equal numbers returning 'false'?
This is about accuracy in PHP the same occurs in several other programming languages. what can be done to circumvent the problem is to use the absolute value of the difference of the two values and…
phpanswered Aloiso Gomes 508 -
2
votes2
answers3479
viewsA: Boleto Bradesco PHP
Good morning, First of all the bank usually offers a manual of integration of the system and also as it should be the layout of the FILE OF SHIPMENT, that is the name of the file that will contain…
-
-3
votes1
answer2003
viewsA: ERP system with PHP
Good morning, I will try to put here some of my experience with this kind of work. When it comes to security, your concern is extremely valid because a person malicious or even error of use of the…
-
1
votes1
answer102
viewsA: Error when compiling Phonegap
Good morning my dear, the problem is with the type of JAVA installed on your machine OpenJDK the ideal is to remove the OpenJDK and install the Oracle JDK in place below the command removes the…
-
3
votes1
answer204
viewsA: Mysql beginner with a lot of difficulty
Fala Alexandre, this slide tutorial written by another Alexandre is very intuitive and will help you a lot in the endeavor http://pt.slideshare.net/alepilot/instalando-o-mysql-em-menos-de-10-minutos…
-
0
votes3
answers4204
viewsA: Div exceeding Modal width limit
Good morning, you are using fixed width in the table this makes the limits are not obeyed <table class="table table-hover tabela-largura-fixa table-condensed " id="table_report"…
-
1
votes1
answer87
viewsA: Link to cakephp within jquery?
Good afternoon, to use cakephp url paths in javascript is simple, use only path :-) url: "/Empresas/indexAjax.json" because who will interpret the route to the javascript request is cakephp! in a…
-
1
votes1
answer1191
viewsA: Get radio button value via jQuery and set in PHP
The solution is using AJAX in his .js (using jquery) $(document).ready(function(){ //gatilho para executar o ajax no click do radio (da escolha PAC ou SEDEX)…
-
5
votes1
answer953
viewsA: Bootstrap side menu not configured in mobile version
Come on I’ll try to help you.... Bootstrap 3 is strict with the correct use of the classes that determine the size of the grid column, I can clarify doubts about this at another time, but at first…