Posts by Bruno Lucas • 60 points
4 posts
-
0
votes0
answers39
viewsQ: Birth enemies other than where the player is with Canvas API
I created a small code to illustrate my problem. In this code is drawn a circle (enemy) randomly on the canvas screen every 100ms. But sometimes you end up drawing also where the larger circle is…
-
0
votes2
answers258
viewsQ: Sort array within another array with Reactjs
Staff I set up a table with the data of an array where will have attack and defense points of each player associated to a team. You will have the total points of attack and defenses of each player…
-
1
votes1
answer77
viewsQ: Organize table with reactjs and firebase
I am receiving data from Firebase with Reactjs and my problem is that I want to organize this data in the table as follows: But I can’t do it, that’s the result I got: I know it is a relatively…
-
0
votes1
answer53
viewsA: Error sending parameter to a PHP server using AJAX (No Jquery)
First thing: you are making a POST type request and trying to receive the GET type. xmlhttp.open('POST','./functions/adicionafoto.php', true); $parametro = $_GET['parametro']; Change to $parametro =…