Posts by Marcos Peres • 69 points
5 posts
-
1
votes2
answers278
viewsA: Jquery is only appearing value of an input with . serialize()
Have you tried in the file Insert.php to do so, for me the js file is correct <?php var_dump($name = $_POST['nome']); var_dump($last_name = $_POST['sobrenome']);…
jqueryanswered Marcos Peres 69 -
1
votes1
answer933
viewsQ: Datatable checkbox in Pagination table
I am making a table with Datatable and paging, but I need it to have a checkbox in each row the problem is that when I have selected all, it only selects the first page, the others have no effects.…
-
-1
votes5
answers3979
viewsA: Footer alignment
This is happening because the footer is set to static. Include this css in the footer: .footer { position:Absolute; bottom:0; width:100%; }
-
1
votes1
answer698
viewsA: Error: CURL can’t connect: Protocol https not supported or disabled in libcurl
The error message says that the HTTPS protocol is not supported or disabled in your server’s Curl library. You have to have this library installed and active. If it still doesn’t work you should…
phpanswered Marcos Peres 69 -
1
votes3
answers208
viewsA: Writing to Mysql with PHP
Viewing your code, it seems that the error is in entering the ID. If your ID field is the Primary Key you enter the same value twice, it generates a duplicate key conflict, for this reason it should…