Problems with php:(
Posted
by Marin
on Stack Overflow
See other posts from Stack Overflow
or by Marin
Published on 2010-05-18T20:15:57Z
Indexed on
2010/05/18
20:20 UTC
Read the original article
Hit count: 375
php
Please help me again! I have problems with this code:
<?php
$pathThemes = INC_DIR . "themes";
$d = dir($pathThemes);
while (false !== ($entry = $d->read())) {
$fileInfo = pathinfo($pathThemes . '/' . $entry);
if ('php' == $fileInfo['extension']) {
include_once($pathThemes . '/' . $entry);
$name = $fileInfo['filename'];
if (!$GLOBALS['fc_config']['themes'][$name]['name']) {
unset($GLOBALS['fc_config']['themes'][$name]);
}
}
}
?>
It says me:
Notice: Undefined index: name in C:\wamp\www\FlashChat_v607\chat\inc\include_themes.php on line 10
Notice: Undefined index: name in C:\wamp\www\FlashChat_v607\chat\inc\include_themes.php on line 10
Notice: Undefined index: name in C:\wamp\www\FlashChat_v607\chat\inc\include_themes.php on line 10
Notice: Undefined index: name in C:\wamp\www\FlashChat_v607\chat\inc\include_themes.php on line 10
Help me plz;(
© Stack Overflow or respective owner