//FUNCIONES.PHP Código PHP:
<?php
function galeria(){
global $db,$sql,$flv;
$sql=$db->sql_query("select * from torkingstube limit 0,20");
opentable();
//Distribuir los resultados del query en columnas
echo "<table width='100%' align=center colspan='5'>";
$columnas = 5; # Número de columnas (variable)
if (($rows=$db->sql_numrows($sql))==0) {
echo "<tr><td colspan=$columnas>No hay resultados en la BD.</td></tr> ";
} else {
echo "<tr><td colspan=$columnas>$rows Resultados </td></tr>";
}
for ($i=1; $row = $db->sql_fetchrow ($sql); $i++) {
$resto = ($i % $columnas); # Número de celda del <tr> en que nos encontramos
if ($resto == 1) {echo "<tr>";} # Si es la primera celda, abrimos <tr>
$tag = "EVENTO: ".$row[1]."\n";
$tag.= "TITULO: ".$row[2]."\n";
$tag.= "SUBIDO EL: ".$row[7]."\n";
$tag.= "SUBIDO POR: ".$row[8];
//La siguiente línea es la que me produce el link del video y su respectivo
// thumbnail. ¿Cómo lo incrusto el REQUEST_URI ahí?. Lo que quiero es
//que mediante ese link, cuando se pinche sobre el thumb de la imagen,
//introduzca el valor de su url en una tabla de la bd que ya tengo creada.
echo "<td><a href=$row[5]><img src=$row[4] alt='$tag'></a></td>";
if ($resto == 0) {echo "</tr>";} # Si es la última celda, cerramos </tr>
}
if ($resto <> 0) { # Si el resultado no es múltiple de $columnes acabamos de rellenar los huecos
$ajust = $columnas - $resto; # Número de huecos necesarios
for ($j = 0; $j < $ajust; $j++) {echo "<td> </td>";}
echo "</tr>"; # Cerramos la última línea </tr>
}
echo "</table>";
closetable();
//Liberar memoria de las consultas.
mysql_free_result($sql);
}galeria();
?>
//FLVPLAYER.PHP Código PHP:
<?php
//EN ESTE FICHERO (FLVPLAYER.PHP) ES DONDE QUIERO RECOGER EL VALOR DE LA BASE DE DATOS
// CODIGO HTML
echo "<html>";
echo "<head>";
echo "<title>\"TORKINGSTUBE FLV PLAYER\"</title>";
echo "<script type=\"text/javascript\" src=\"swfobject.js\"></script>";
echo "</head>";
//CODIGO PHP
global $db;
$consulta = $db->sql_query("select link from torkingstube_tmp");
$roww = $db->sql_fetchrow($consulta);
$rowws = $db->sql_numrows($consulta);
$limite = 100;
$dif = $limite-$rowws;
if($rowws==0){
echo "La tabla está vacía";
}elseif($rowws>0 && $rowws<100){
echo "Hay $rows videos"." y quedan $dif"." registros libres";
echo "<br>";
echo "La URL del flv es: "."$roww[0]";
}else{
echo "borrar";
}
//CODIGO HTML
echo "<center>";
echo "<body>";
echo "<embed src=\"flvplayer.swf\" width=\"380\" height=\"380\" allowfullscreen=\"true\" allowscriptaccess=\"always\" flashvars=\"&displayheight=380&file=$flv&height=380&image=http://www.torkings.com/torkingstube/logo.jpg&width=380\"/>";
echo "</body>";
echo "</center>";
echo "</html>";
?>