Posts by Fernando Cavalcante • 39 points
5 posts
-
-1
votes1
answer49
viewsA: Pagination losing the data
Speak, my dear, next. The error that occurs is that when the query page is loaded you pass the value query type via POST (sent by a form), so when paging this request type POST there is no longer…
phpanswered Fernando Cavalcante 39 -
0
votes1
answer36
viewsA: ERROR MYSQLI BD MIGRATION
Good afternoon my dear! The error is clear, the function mysqli_query() requires 2 parameters. One is the connection, the other is the query you want to run. Example: $link =…
-
1
votes1
answer93
viewsA: Make Script work in loop
Good night, my dear! I took your code and made a test, next. In the tag select I put the class . destino_in and modified the script that was as follows: <!DOCTYPE html> <html>…
-
0
votes2
answers50
viewsA: Problem with sending via URL ( GET)
Speak my dear! All right? I tested the code on my machine and after including the script to load along with the page "window.onload" it worked normally. While the URL modification that appears in…
-
0
votes1
answer180
viewsA: Errors with js table filter and paging
The warning is being caused by the line $page=$_GET['page']; where you are assigning the value of $_GET['page'] directly. Try putting an if to check if it exists. Ex: if( isset( $_GET['pagina'] )…