Posts by MonitorLPI • 205 points
7 posts
-
1
votes2
answers1248
viewsA: How to catch the return of the method ofInBackground on android?
If you are still facing this problem, a suggestion I used some time ago is to use the method get() of the instantiated object with the class it inherits from Asynctask just after invoking the method…
-
1
votes1
answer2851
viewsA: Save in the image gallery taken by the camera and get way of that image. - Android
I think this way will work, any doubt, just post. public class Capturar extends AppCompatActivity{ private static final int CAMERA = 1; private ImageView imageView; private String caminhoDaImagem;…
-
2
votes2
answers510
viewsQ: How to load html page with the scroll bar of a DIV at the end?
I have a div with a fixed size and containing many large texts within it. I would like that whenever the page that contains it was loaded, it was "focused" (that is, the focus of the page went…
-
1
votes3
answers116
viewsA: Save multiple records in the bank
See if the script below works, if it doesn’t work, note the error generated and post here in the comments: <?php $conn = mysqli_connect("localhost","user","pass","banco"); // Se não funciona,…
-
2
votes1
answer956
viewsQ: Why and when to use "res.send()" in an application? Nodejs and Express
Well, I’m a beginner in Nodejs and started studying for academic purposes. In another question I asked here at SO-BR (What is the "res.send()" command for in Express?) I asked what this command was…
-
4
votes2
answers4742
viewsQ: What is the "res.send()" command for in Express?
I am studying Nodejs for academic purposes and during the implementation of a project I came across this command. What it serves?
-
5
votes1
answer1366
viewsQ: How to create webservice using PHP and REST?
I have been researching a lot about webservices lately and would like your help to know how I can build a webservice using REST and PHP. I chose PHP because I am more familiar with the language, and…