Posts by Douglas Cândido • 11 points
3 posts
-
1
votes1
answer91
viewsA: input form does not type
To rescue the zip typed in a form with the html input tag you need to use the PHP language feature which is called superglobal variables. Superglobals are available in all scopes, so you can set a…
phpanswered Douglas Cândido 11 -
0
votes2
answers1357
viewsA: (Django) How to implement a button in the template that triggers any method?
Thank you guys! I’ve done many tricks here, it was necessary to create a url that calls a view that executes the action. I implemented the view to list all the addresses already registered and then…
-
0
votes2
answers1357
viewsQ: (Django) How to implement a button in the template that triggers any method?
My question is about implementing buttons in any template. I want to click this button and do the same thing, such as display a message on the screen. How can I do that? Here is an image of my…