Posts by devwes08 • 31 points
3 posts
-
0
votes1
answer47
viewsQ: How to receive 2 thread response and store in one method?
The problem is this: I have a server that receives 2 players (each in a thread) using TCP/IP. In the run of each thread they inform the move (stone, paper or scissors). I have a class "Play", which…
-
1
votes2
answers96
viewsQ: Form sending NULL to PHP?
I have a FORM that should send the user ID to PHP, but PHP receives null. HTML: (the <?=$individuo["ID"] is returning id correctly) <form name="alterar" action="alterar.php" method="POST">…
-
0
votes1
answer73
viewsQ: How do I know if the form received in php is an Insert, delete or update?
I need to make a CRUD system with html and PHP, in which PHP takes a certain measure according to the type of request (whether it is register, update or delete) but I don’t know how to pass this…