vote up 0 vote down star
1

I would like to know what's the best way to organize my php project with ajaxActions files.

At the moment I have a few ./process/ajaxAction_pagename.php files containing my actions like this:

if ($action=="actionName")
{
//code
}

I'm just wondering if there is a better (or more standard) way to do it.

flag

2 Answers

vote up 1 vote down check

How about using an minimal mvc framework to handle your actions? Checkout: Cupcake php framework it needs documentation but it's really minimal.

link|flag
vote up 0 vote down

i also organize actions in one script with parameter passing info about what action should be run.

link|flag

Your Answer

Get an OpenID
or

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