Multiplayer games with Flash

what server-side language is good for making multiplayer games(a turn-based game)?
I’m learning PHP right now, can it make multiplayer games with Flash?

thanks!

you use php to create a socket and send data that way. not sure how pratical it is but it would work for slower chessy kinda games with slow gameplay.

thanks
can “XMLSocket.send()” send message to a server-side language?(ASP, PHP, JSP…)
also if my web accept JSP, does this mean that I can make Multiplayer game with Java? Or does it need something else?

Yes it is possible to use XMLSockets to send the data to php. i dont know about jsp

can you tell me how?

http://fr.php.net/manual/en/ref.sockets.php lists all the functions, if you look further down the page you can see an example . Goodluck