Posts by Anderson Nuernberg • 72 points
5 posts
-
-2
votes2
answers769
viewsA: Set default input value without appearing to the user
If you don’t want to show to the user use: <input type="hidden" id="vlalgumacoisa" value="0" /> In Php you take the value of this input quietly, it just doesn’t show up in the form.…
-
0
votes1
answer102
viewsA: Convert sql dates to Brazilian format in PHP
I use a function for that: converte_data($evento->dt_evento) and the function: function Converte_Data($data){ $data_nova = implode(preg_match("~\/~", $data) == 0 ? "/" : "-",…
-
1
votes3
answers14621
viewsA: Table does not break the line
In this specific case, the break did not happen because it was understood that there was only one word, no spaces. Try to put some spaces, as if you were forming a sentence, then I believe that the…
-
1
votes0
answers109
viewsQ: Recover value from an HTTP
I found a question four years ago that "would be" exactly what I need: I have a URL where it returns an HTTP Querystring, and I need to recover URL information and convert into variables to make…
-
0
votes1
answer129
viewsQ: Instantiate list and Insert values at different times
Hello, in a web application, I need to insert values in a list at different times. This insertion occurs after the user fills in fields on the page and gives the Submit in the form. In Submit is…