i noticed that PHP-GTK has been bumped up to version 0.5.0 and declared pretty stable.
i am interested in making a slew of client side apps now...
all would involve log ins to a server, and i would really like to use PHP's session management. what do i have to do to make a PHP-GTK app work with PHP sessions?
how can i do this securely? how can i do this insecurely?
I run many online web based games, so making clients for them all, would GREATLY reduce server load (i just send updated data, and the client regens the page to include the new info). I want them to log in to the server (probably using HTTP), have the server set up a session, pass back the sess_id, and any further transactions would be authenticated somehow. (maybe encoding all data sent with some client private key or something). anywho, has anyone done anything similar?