Viewing file: movieshow.php (2.4 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<table width="100%" border="0" cellpadding="4" cellspacing="0" bgcolor="#CCCCCC">
<tr>
<td><div align="left"><strong>Películas</strong></div></td>
</tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="6">
<tr>
<td height="300" align="center" valign="middle" bgcolor="#000000">
<?php
if (isset($patron)) {
$cuando = "( contenido_pertenencia_foto_categoria.categoria_id = '$patron' and contenido_pertenencia_foto_categoria.foto_id = contenido_foto_y_medios.foto_id and contenido_foto_y_medios.foto_tipo = 0 and contenido_foto_y_medios.fuente_id = administracion_fuente.fuente_id and contenido_foto_y_medios.foto_formato = 2)
order by contenido_foto_y_medios.foto_nombre";
$donde = "contenido_foto_y_medios, contenido_pertenencia_foto_categoria, administracion_fuente";
}
if (isset($id)) {
$cuando = "( contenido_pertenencia_foto_links.links_id = '$id' and contenido_pertenencia_foto_links.foto_id = contenido_foto_y_medios.foto_id and contenido_foto_y_medios.foto_tipo = 0 and contenido_foto_y_medios.fuente_id = administracion_fuente.fuente_id and contenido_foto_y_medios.foto_formato = 2)
order by contenido_foto_y_medios.foto_nombre";
$donde = "contenido_foto_y_medios, contenido_pertenencia_foto_links, administracion_fuente";
}
$control = new select_pg(2, "contenido_foto_y_medios.foto_id, contenido_foto_y_medios.foto_nombre, contenido_foto_y_medios.foto_archivo, contenido_foto_y_medios.foto_pie, contenido_foto_y_medios.foto_ancho, contenido_foto_y_medios.foto_alto, administracion_fuente.fuente_nombre", $donde, $cuando, 6, 1, "(id)-(nombre)-(archivo)-(pie)-(ancho)-(alto)-(autor)", "<table width=\"(ancho)\" border=\"0\" cellspacing=\"0\" cellpadding=\"4\"><tr><td align=\"center\" valign=\"middle\"><p><object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\" width=\"(ancho)\" height=\"(alto)\"><param name=\"movie\" value=\"../(archivo)\"><param name=\"quality\" value=\"high\"><embed src=\"../(archivo)\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"(ancho)\" height=\"(alto)\"></embed></object></p></td></tr><tr><td align=\"center\"><p><a href=\"../(archivo)\">(pie)</p></td></tr><tr><td><p>Fuente: (autor)</p></td></tr></table>", "" ,""); ?>
</td>
</tr>
</table>
|