Warning: dl() [function.dl]: Unable to load dynamic library 'C:\PHP\Extensions\C:\Sites\Single16\groundbrandon\webroot\bboysspace\php_ming.dll' - The specified module could not be found. in C:\Sites\Single16\groundbrandon\webroot\bboysspace\1.php on line 9
Fatal error: Class 'SWFMovie' not found in C:\Sites\Single16\groundbrandon\webroot\bboysspace\1.php on line 22
source code is
if(!extension_loaded('ming'))
{
if(strtoupper(substr(PHP_OS, 0, 3)) =='WIN')
{
dl('C:\Sites\Single16\groundbrandon\webroot\bboysspace\php_ming.dll');
}
else
{
dl('C:\Sites\Single16\groundbrandon\webroot\bboysspace\php_ming.so');
}
}
?>
$myMovie = new SWFMovie();
$myMovie->setDimension(400, 300);
$myMovie->setRate(30);
$myMovie->setBackground(0, 0, 0);
// Now output the movie
header("Content-type:application/x-shockwave-flash");
$myMovie->output();
?>
2007-04-01
05:39:38
·
4 answers
·
asked by
groundbrandon
3
in
Computers & Internet
➔ Programming & Design
how do I access it without using a absoute path? It's rented webspace
2007-04-01
05:57:33 ·
update #1