On Saturday 07 June 2003 11:20, Allowee wrote:
> hmmm,
> maybe this code..
>
> $info->load("/".$dir.$file);
>
> if $dir = mp3s and $file = test.mp3
> then it will load '/mp3s/test.mp3'
>
> you got that directory?
> I've seen the class and you are hiding the fopen error message, which could
> be the problem.
>
> .: Allowee
>

hmmm.....
that won't work..

you can try
$info->load("./".$dir."/".$file);

or simple..
$info->load($dir."/".$file);

.: Allowee

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to