Posts by Murilo Albeest • 93 points
10 posts
-
0
votes1
answer81
viewsQ: Doubt in exercise of R
I’m having trouble doing the following exercise, someone with R knowledge could help in this case In a long jump competition each athlete is entitled to five jumps. The result of the athlete will be…
rasked Murilo Albeest 93 -
1
votes0
answers108
viewsQ: Pdo login authentication
I have a problem that always falls independently in the error line Incorrect Password, this script was in mysqli and I am trying to pass to PDO. What could be wrong? <?php session_start();…
-
-1
votes1
answer27
viewsQ: Parameter php server
I’m setting up a scheme to validate my code to try to avoid copies. I wondered if I had any Apache or php parameters that would be unique... for example if I copied the source code and ran on…
phpasked Murilo Albeest 93 -
0
votes2
answers68
viewsQ: doubts regarding a dynamic select
My question is this, I have a table in the bank with the following specifications. ID | Produto | Qtdade | valor unitário de venda -------------------------------------- 1 | ABC | 5000 | 10 2 | ABC…
-
-1
votes1
answer888
viewsQ: chatterbot_corpus module not found after installing chatterbot
Does anyone know what these mistakes can be? C:\Python37_64\venv\Scripts\python.exe C:/Python37_64/chat.py Traceback (most recent call last): File "C:/Python37_64/chat.py", line 1, in <module>…
-
2
votes1
answer1859
viewsQ: doubt installing chatterbot in windows
I am trying to install the chatterbot via Pip install chatterbot, however it is giving the error below, which may be? C:\Windows\system32>pip3 install chatterbot Collecting chatterbot Using…
pythonasked Murilo Albeest 93 -
-2
votes1
answer66
viewsQ: date does not show full date, only year
I have this situation that I need to take the current year and play in the variable janI and janF, on screen I send a echo and displays the date. However, it is only displaying 2019. The /01/01 is…
-
0
votes0
answers77
viewsQ: Insert doubt with while
I have this while that brings me all the vendors I want in an array, in which I can edit their name, my problem is that I want to make an index of these values in another table, but I have no idea…
-
0
votes1
answer33
viewsQ: Inner Join question with Prepared statement
Hello, I was using select that way and working perfectly $id = (int)$_GET["id"]; $banco = $mysqli->query("SELECT os.os_solicitado,os.os_status,cliente.cliente_emailfinanceiro FROM os left join…
-
5
votes1
answer133
viewsQ: doubts about POST method
I am learning php and would like to take a doubt if my code is vulnerable to sql Injection. In case I’m putting together a form <form method="POST" action="classes/cliente.class.php"…