Posts by Daniel de Aguiar • 11 points
5 posts
-
-2
votes1
answer30
viewsQ: Handle date format with PHP
*I’ve looked at other topics, and I couldn’t figure it out. I have a form like text which receives dates, the user writes in the format dd/mm/yyyy, but when I debug the value returns in yyyy/mm/dd.…
-
0
votes2
answers67
viewsA: How do I get records from my database in ascending order(of id), but I want it to take one by one
Remove "LIMIT 1" from the SQL command Would look like this: $sql = "SELECT * FROM perguntas ORDER BY id_pergunta"; You can, if you want, add the "ASC" in the command, which would be to query in…
-
1
votes2
answers130
viewsA: PHP + Mysql --- Save data to BD
Look, the mistake I see in this code is that you send the information by the POST method on line 19 <form action="php/cadastrar.php" method="POST" id="FormCadastro"> And receive them by the…
-
0
votes1
answer175
viewsQ: Python only reads the last word of my Wordlist
I’m starting in python and I picked up an educational script from bruteforce. However, when the script reads the Wordlist passwords and users, it only takes the last record and ignores all the…
pythonasked Daniel de Aguiar 11 -
0
votes3
answers165
viewsA: Difficulties in running Whatsapp button source code in HTML
Replaces the link https://api.whatsapp.com/send?phone=77912345678&text=Enter%20in%20contact This way: https://api.whatsapp.com/send?phone=5577912345678&text=Entrar%20em%20contato <link…