Posts by Lucas Franson Barros • 36 points
4 posts
-
0
votes1
answer41
viewsA: Request ajax forwards call to controller
I found the solution. In the event my tbody button click event was creating click events for the add item button, so whenever I add an item to open the modal, was added another click event to the…
-
0
votes1
answer41
viewsQ: Request ajax forwards call to controller
Talk to me, people. I have a problem with item registration, when you list a series of items and I click add opens a new modal with the characteristics of the item that will be added. However when I…
-
0
votes1
answer61
viewsA: Add HTML with Javascript and Remain
To configure your connection to Mysql Database in PHP: <?php $db_name = "[Nome do seu banco]"; $db_user = "[Nome de usuario do seu banco]"; $db_password = "[Senha do banco]"; $db_host = "[Host do…
-
2
votes2
answers52
viewsA: How to place variable concatenated inside a <a>?
To decrease the code can also be: <nav> <ul> <li> <a href="?p=ultimasnoticias&pagina=<?=$i?>"><?=$i?> </a> </li>…