i'm just starting programming with php and am trying to convert a plugin. i have a problem with is_dir. my code:
Code: Select all
$path = 'images/stories/fruit';
$fullpath = JURI::base() . $path."/";
if ( is_dir($fullpath))
{
.....
}
else die ("Path is not a directory: " .$fullpath);
can anybody please help me?