views:

62

answers:

3

where can I find an running exemple of game developed in PHP?

I'm just finding game engines, and pages that says "php games" but running under flash...

+2  A: 

PHP is (generally) a server-side technology, so you will find most games are going to be written using client-side tools such as Flash, JavaScript, etc.

That said, what types of games are you looking for?

Justin Ethier
Ditto... most people don't want to sit and wait for a server round-trip every time they click something in a game.
LarsH
I was just trying to compare it with javascript, but looks like they are not two languages to compare.. so, thanks!
Tom Brito
A: 

PHP is a server-side language, and isn't really intended to make games. Cocoa, RubyCocoa, javascript or flash would be more suited for this purpose.

You could make a very simple number guessing game or something similar (although I would use javascript :P)

alexy13
A: 

There are some PHP Games, but there very old school, like Turn-based MMORPGs and such.. you'll find they're gonna be pretty basic without JS/Flash.

Here's one example: http://www.chipmunk-scripts.com/page.php?ID=16

Mikey1980