Posts by mer.guilherme.uem • 139 points
9 posts
-
-1
votes1
answer44
viewsQ: Align elements on top of other html css
Good morning, I need to align the two date fields that are below with the two top fields. What’s the best way to do this? According to the image, when I give margin left auto no span it is not…
-
1
votes1
answer38
viewsQ: Insert a checkbox within a Jquery Javascript button
I have a list with a mousedown within each <li></li> and I need to put a checkbox within that li tbm only that the checkbox can’t have the mousedown. Is there any way to do it? <li…
-
0
votes1
answer98
viewsQ: How to resolve Fatal error: Call to Undefined Function mysqli_connect() in
Good morning, my site is not working and gives the error Fatal error: Call to Undefined Function mysqli_connect() in /home2/amttli84/public_html/conexion.php on line 7 The strange thing is that on…
-
1
votes1
answer27
viewsQ: Hover of a select with javascript/jquery
Good morning, I need to create an Hover in each selects option and I’m not able to do. This select is done this way. <select id="valorFiltro" style="width:350px" class="browser-default…
-
1
votes1
answer388
viewsQ: How to increase upload size in php?
Good morning, I need to upload a csv file that is larger than the standard php that is 2M (the file is around 10 to 15M) The application works perfectly for files smaller than 2MB. I’ve tried in…
-
-1
votes2
answers334
viewsA: Import excel spreadsheet with many records with php
Hi, I did the two implants you suggested and it still didn’t work out. To show html and Submit to that page to read the file I tried to put on both the first page and the page that reads the file…
-
0
votes2
answers334
viewsQ: Import excel spreadsheet with many records with php
Good morning!! I have the following situation, I need to do an Excel spreadsheet import (.xml). Only the problem is that my spreadsheet has over 100,000 records and php can’t read everything. The…
-
0
votes1
answer27
viewsQ: AJAX request not working
I have a function that calls an ajax to save in the bank. All my other POST requests I did this way and it worked. Now I don’t know what happened. If anyone can help me. $.ajax({ type: "GET",…
-
8
votes2
answers185
viewsQ: Add 1 day to a date
I need to pick up the next day after today. To do this I was trying: var data = new Date() ; var dia = data.getDate(); dia = data.setDate(dia + 1); Only that the end of the return is 1585748377830…