I have built a website using php and simple HTML/CSS for a client. In its simplest form : The website allows users to upload pictures and view them in a virtual art gallery. Basically I just placed images against a background image that looks like a art gallery wall.

The client wants a 3d website now, where the user can "walk through rooms and view pictures on walls, etc."

I'm wondering what's the best way to create a 3d environment that will allow me to use php to dynamically change the layout of the walls. I have been thinking of using html5 canvas.

I'm open to pretty much anything. Thanks!

link|improve this question

Would that be a 3D website with red and green glasses, active shutters, or the real deal with polarised light? – GolezTrol Aug 14 '11 at 18:03
Ah sorry. I mean a virtual 3d website. Like a video game where you can use the keyboard to move around. Basically a 2d rendition of a 3d world – Brian W Aug 14 '11 at 18:05
1  
Just kidding. ;-) I think you need to do very little in PHP. If you need to create a 3D room, you would probably do this on the client itself, using a HTML5 canvas or Flash or Silverlight. The server will just serve up the images. It may do a little more, because you may need some textures for the walls and maybe a room layout, but I think you won't be rendering the actual 3D image on the server. – GolezTrol Aug 14 '11 at 18:05
Are those the only/best options? Everyone is against flash... So should I do HTML5? – Brian W Aug 14 '11 at 18:06
Thanks. Off to learning animation with html5! – Brian W Aug 14 '11 at 18:08
show 1 more comment
feedback

1 Answer

up vote 2 down vote accepted

You can try WebGL, Adobe Flash/Flex, Silverlight or Java applets for that.

For all approaches, you likely will have a "loader program" (or "engine") which then fetches the room description via RPC from your PHP-based backend, along with image URI and other stuff you need. This way, there is no need to change your program again just for updating the rooms or images.

link|improve this answer
Thanks for the input! Reading up on it all now. – Brian W Aug 14 '11 at 21:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.