Recentemente fiz um tópico aqui sobre uma galeria de videos que já foi resolvido --link abaixo--
http://forum.wmonlin...eria-de-videos/
Agora é o seguinte:
Eu tava querendo encaixar esse código num site que to fazendo, e não sei como, da erro,
queria saber como encaixar esse link aqui da galeria
<a href="ver.php?videos=<?php echo $lnThumb['id_video'];?> "> <img src="<?php echo $lnThumb['foto'];?>" /></a>
em minha página que se chama animacao.php
mas sempre que eu faço isso
<a href="animacao.php?videos=<?php echo $lnThumb['id_video'];?> "> <img src="<?php echo $lnThumb['foto'];?>" /></a>
ou isso
<a href="videos/animacao.php?videos=<?php echo $lnThumb['id_video'];?> "> <img src="<?php echo $lnThumb['foto'];?>" /></a>
(pois essas páginas estão dentro da pasta videos),
da erro, como que eu posso fazer esse link ficar assim:
http://kamanga.atwebpages.com/
só que dentro do meu site sem dar erro
código da página animacao.php sem a galeria:
<?php
session_start();
ob_start();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR...nsitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sem título</title>
<script type="text/javascript" src="videos/plugins/js/flowplayer-3.2.6.min.js"></script>
<!-- some minimal styling, can be removed -->
<link rel="stylesheet" type="text/css" href="videos/plugins/js/style.css">
<!-- page title -->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link rel="stylesheet" type="text/css" href="comments/css/stylesheet.css"/>
</head>
<?php
include "css.php";
?>
<body>
<div id="geral_conteudo">
<?php include "menugaleria.php";?>
<div id="box_rightvideos">
<h2>Vídeos e animações!</h2>
<hr />
<div align="left">
<a href="http://twitter.com/share" class="twitter-share-button" data-url="@AnimaSan" data-text="Siga esse Twitter @AnimaSan, eu vou seguir, é muito massa!!" data-count="horizontal" data-via="" data-related="EderLuciano" data-lang="pt">Tweet</a><a href="http://twitter.com/AnimaSan" class="twitter-follow-button" data-lang="pt">Follow @AnimaSan</a><script type="text/javascript" src="http://platform.twit...s.js"></script>
<br />
<div id="fb-root"></div><script src="http://connect.faceb...script><fb:like href="http://www.facebook....33578143388241" send="true" layout="button_count" width="450" show_faces="false" font=""></fb:like>
</div>
<hr />
<div id="titulo_de_video">Video de teste numero 1.</div>
<div id="bordervideo">
<!-- this A tag is where your Flowplayer will be placed. it can be anywhere -->
<a
href="videos/animacoes/video.mp4"
style="display:block;width:520px;height:330px"
id="player">
</a>
<!-- this will install flowplayer inside previous A- tag. -->
<script>
flowplayer("player", "videos/plugins/js/flowplayer-3.2.7.swf");
</script>
</div>
<hr /><br />
<div id="boxcoments">
<?php
$page_id = "1";
$reference = "Page One";
$path_to_comments_folder = "comments/";
define ('IN_COMMENTICS', 'true'); //no need to edit this line
require $path_to_comments_folder . "includes/commentics.php"; //no need to edit this line
?>
</div>
</div>
<?php include "menuvideos.php";?>
</div>
</body>
</html>
Já tem um player de vídeo lá, mas eu queria usar essa galeria por ser mais fácil pra programar!
Espero que me ajudem nessa batalha!!