I'm developing a game in PHP/jQuery, and naturally have to be wary of any sort of
data coming from the client.
At present, I have tables of
data representing the map (2D roguelike), monsters, items, and player(s). Initially, my thought was to simply package it all in a JSON object and send it every game tick, however when
…