Warning: include_once(modules/articles/show.php?id=58) [function.include-once]: failed to open stream: No error in Z:\home\nnnn\www\cms_str\index.php on line 22
if (isset($_GET['url'])) {
$path = explode('/', $_GET['url']);
$n = count($path);
switch ($n) {
case 1:
include_once 'modules/'. strtolower($path[0]) .'/index.php';
break;
case 2:
if (str_word_count($path[1])==0 && strlen($path[1])==0) {
include_once 'modules/'. strtolower($path[0]) .'/index.php';
} elseif (str_word_count($path[1])==0 && strlen($path[1])>0) {
$_GET['id']=$path[1];
include_once 'modules/'. $path[0] .'/show.php?id='. $_GET['id'];
} else {
include_once 'modules/'. strtolower($path[0]) .'/index.php';
}
break;
}
От мой рако-код. Может кто пояснить суть:
No error