summaryrefslogblamecommitdiffstats
path: root/application/controllers/IndexController.php
blob: 83fbe0823a69dbd6766739bfd7d2be7b56b1d7f7 (plain) (tree)
1
2
3
4
5
6
7
8





                                                    

                                                         



                                 

                                                                
                                                                                                                     
         

       









                      
<?php

class IndexController extends Zend_Controller_Action
{

    public function init()
    {    	
        /* Initialize action controller here */          
    }

    public function indexAction()
    {
    	if(stristr($_SERVER['HTTP_USER_AGENT'],'prebootGUI')){
			$_SESSION['postdata'] = $_POST;   	
			$this->_redirect('/fbgui/index/index/data/'.json_encode($_POST))	;	             
        }
       

        // action body
    } 


}