I am making a 2 player drawing game (Touch Game). On the left side you have a canvas where you as a player can draw, to the right of it you have an image that displays what your friend or opponent has drawn. At this moment the image you draw is uploaded to an SQL database and from that database the image of the other player is downloaded. I was wondering 2 things.
Is it possible to keep track of who is online without a database or is it necessary to have a database for this. (If so I can do that but I think it is more neat to not do so)
The images are stored on a database using: Your Name | Opponents Name | Image DataURL I was wondering if it would be possible to make a connection bridge between the two players with my website in the middle of it. It recieves an image and sends it through to the other player.