Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to make corrections to an MVC project that uses following as router.php:

session_start();
function autoloader($class){

    if(file_exists('application/'.strtolower($class).'.php')){
        //first check the application directory
        include_once('application/'.strtolower($class).'.php');

    }elseif(file_exists('application/controllers/'.strtolower($class).'.php')){
        //then check the controller directory
        include_once('application/controllers/'.strtolower($class).'.php');

    }elseif(file_exists('application/models/'.strtolower($class).'.php')){
        //finally check the models directory
        include_once('application/models/'.strtolower($class).'.php');

    }


}
require_once('application/config.php');
spl_autoload_register('autoloader');


//grab the path info and break it apart into separate variables
$paths= explode('/', $_SERVER['PATH_INFO']);

//check the view, if empty set to default view
if($paths[1] == ''){
$view = DEFAULT_VIEW; 
}else{
$view = $paths[1];
}
//check to see if a method is being called and assign the $method variable
$method = $paths[2];

//check to see if any parameters are passed and assign the $parameters array
for($i=3;$i < count($paths);$i++){

$parameters[] = $paths[$i];
}


//uppercase the first variable name and append Controller to it. If none, the default     controller will load
$controller = ucfirst($view).'Controller';
//instantiate our controller and pass in parameters
if (class_exists($controller)) {
new $controller($view, $method, $parameters); 
} else {
    new Controller('404');
}

and controller.php contains:

                //run any task methods
                if($method){
                    $this->runTask($method, $parameters);
                }else{
                    $this->defaultTask();
                }
                //render the view
                $this->load->view($view.'.php', $this->data);

public function runTask($method, $parameters = null){

    if($method && method_exists($this, $method)) {

                //the call_user_func_array expects an array so we create a null array if parameters is empty
                if(!is_array($parameters)){
                    $parameters = array();
                }

      call_user_func_array(array($this, $method), $parameters); 

    }

}

and load.php of course:

class Load {
   function view( $file_name, $data = null ) 
   {
       if( is_array($data) ) {
       extract($data);
   }

    $u = new User();
   include 'views/' . $file_name;
 }
}

I dont see any errors there but i cannot run it on pc because of $_SERVER['PATH_INFO'] that is used for the url redirections. I have changed into php.ini the corresponding regulation to 1 as is advised and still the same issue. On live server problem is that when for example page www.somedomain.com/blogs is selected server retutns on the screen: No input file specified. I used also REQUEST_URI but then i had other problems too such as i have so many undefined variables that kill the execution. For example in view page member.php

if(is_array($user))
{
    extract($user);
    echo $first_name . ' ' .  $last_name;

gives all 3 of them above as undefined. Any help is appreciated.

share|improve this question
What exactly is your question ? – tereško Nov 22 '12 at 12:09
How i can make this $paths= explode('/', $_SERVER['PATH_INFO']); and below in router.php work for the rest site and not result in all the errors i 've mentioned before? – marios Nov 22 '12 at 12:13

closed as not a real question by tereško, bensiu, Maerlyn, Jeremy Smyth, j0k Nov 23 '12 at 10:17

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

While I haven't use that technique I generally see that frameworks route by using .htaccess rewrite rules. For example, in your .htaccess you could write:

RewriteRule ^action\/([A-Za-z0-9\_\-\/]+)$ dispatcher.php?action=$1&%{QUERY_STRING}

and then in your dispatcher.php you can analyze the content of $_REQUEST['action']; as you do in router.php. This should work ok both in a production server and local environment.

As a more general note, there are frameworks like Slim that just take care of handling this. You may also want to check this link.

HTH

share|improve this answer

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