Posts by Rafael Anderson lobo • 107 points
10 posts
-
0
votes0
answers30
viewsQ: start threads together python3
How to start threads together ? Context : I have a class that extends the Threading.Thread. However, when I start threads, it seems to me that they are running sequentially. Example : 1. Log in for;…
python-3.xasked Rafael Anderson lobo 107 -
0
votes2
answers9165
viewsQ: Access device via CMD
How to access android internal folders using cmd CD command. ex: My Computer Redmi 4X Internal Storage
cmdasked Rafael Anderson lobo 107 -
0
votes1
answer627
viewsQ: Send POST file with php using file_get_contents
Is there any way to send a file via file_get_contents without manually manipulating the request header ?
-
1
votes1
answer40
viewsQ: Is there any way to do multiple mysql queries and if any fail to undo all?
I wonder if mysql has a similar feature. I need to create an application and it is necessary to ensure that all sub queries return success.
-
2
votes0
answers112
viewsQ: Is there an angle limit to request post?
I’m making a post request via $http at the angle, and when my back-end returns a very large json string it doesn’t load, it makes me wonder if there are any settings that limit a request that…
-
2
votes2
answers1014
viewsA: How to recover data sent from a post request at angular
Another way out would be this: //pego a descricao no compa input var dados = {"descricao": $('#descricao').val()}; $scope.getData = function() { $http.post('data.php', dados).success(function(data)…
-
-1
votes1
answer291
viewsQ: Upload binary data via html-free post
I wanted a solution to do exactly what this html does, however using only php: uploading a binary data and normal fields (strings). <center> <form enctype="multipart/form-data"…
-
0
votes1
answer24505
viewsQ: Could not connect: No connection could be made because the target machine actively refused them
I am trying to connect to my database. This is easyphp webserver 14.1. Follow php code for connection. <?php $HOST = '10.40.0.185:3388'; $USER= '*****'; // Aqui informei o usuário do meu banco…
-
3
votes1
answer110
viewsQ: "Hotlinking is Forbidden" when using file_get_contents()
This error appears when I try to use the function file_get_contents() of PHP: failed to open stream: HTTP request failed! HTTP/1.1 403 Hotlinking is Forbidden As a parameter we have a normal PHP…
phpasked Rafael Anderson lobo 107 -
0
votes1
answer400
viewsQ: How to use Js events without html
How do I make it spin ? <html> <head> <script language="javascript"> function teste(){ alert("oi"); } document.getElementById("as").onclick = function(){ teste(); } </script>…