01-19-2008, 11:16 PM
|
#13 (permalink)
|
|
The Frequenter
Join Date: Apr 2005
Location: South UK
Posts: 483
Thanks: 51
|
Bill, out of interest, what do you think of CodeIgniter compared to other frameworks like Cake or Zend?
Another 5 lines from me - parts of my Zend Framework Application Generator project:
PHP Code:
$this->view->currentStep = ($_SESSION['totalSteps'] == 6 ? 3 : 4);
$this->view->totalSteps = $_SESSION['totalSteps'];
// Display the correct form based on the appType
if ($_SESSION['appType'] == 'modular')
{
$this->render('actions-modular');
Alan
|
|
|