views:

53

answers:

1

I'd like to write a new website from scratch. I'll be using PHP for server-side and Flash/HTML for client-side.

How can I achieve a website navigation something like this http://mariotestino.com/ [site auto-plays sound]

Notice when you click on Projects | Arts | Contacts...etc...you do not see .html page, instead it has a clean URL.

I'd rather not write the php script myself, since I don't know a single thing about syntax. Is there a script that already does that?

Before you suggest WordPress, I've thought about that already but it's an overkill. I need something extremely fast and efficient without all the bloatware that WordPress ships with. All I need is a simple website navigation and possibly a registration/contacts form. That's it. Everything else will be in HTML and Flash.

Update: Following Jason's link I have found a few frameworks that satisfy my needs and is exactly what I was looking for. One of them is Symfony2 - it's really, fast, clean and gives me URLs in a nice SEO-friendly format!

+1  A: 

It sounds like you want a routing framework. See this question

Jason