Posts by Pedro Barreira Teixeira • 43 points
5 posts
-
0
votes1
answer72
viewsQ: Error when displaying bank return in Mysqli
Guys, I’m doing a PDO login system I don’t understand much, but I’m going through this problem, I developed the following code below: $select = $con -> prepare("SELECT * FROM conta WHERE conta =…
-
1
votes1
answer98
viewsQ: Error while trying to insert with PHP
I’m trying to run this function in php: $insert = $con ->prepare("INSERT INTO conta (conta, senha, email, acesso) VALUES(?, ?, ?, ?)"); $insert ->bind_param("sssi", $usuario->getConta(),…
phpasked Pedro Barreira Teixeira 43 -
1
votes1
answer213
viewsQ: Sending parameters by android url
I have an android app running and need to send some parameters per URL quickly and easily to run. I use this code to perform this function, but it is already obsolete and sometimes it does not work…
-
0
votes0
answers65
viewsQ: Sending android image to a js Node server
I’m developing a project and I need it to record a photo, and send it to a server that’s running Ode. In this same project is already running a data exchange through the socket.io and now I need to…
-
0
votes0
answers781
viewsQ: Registering photo on android without opening the camera
I’m developing an android app where I need every time a person logs in the app to register a photo and send it along with authentication. However I can not develop this without the camera phone is…