| 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
 <script type="text/javascript" src="<?=$path_url;?>lib/swfobject.js"></script>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 
 <title>Exemplo 2</title>
 </head>
 <body>
 <?
 require_once 'inc/config_inc.php';
 
 $obSWF     = new GOOX_SWFOBJECT();
 
 $player_w = 300;
 $player_h = 185;
 // coloque um video em formato flv no diretotio "images/movie/"
 $arrVars  = array(
 "width"                 => $player_w,
 "height"                 => $player_h,
 "file"                     => $path_url."images/movie/11.flv",
 "autostart"         => "false"
 );
 echo $obSWF->getSWFOBJECT("images/swf/player.swf","player",$player_w,$player_h,$arrVars);
 
 ?>
 </body>
 </html>
 
 
 
 |