// funciones para la rotación de la publicidad
if ( isset( $show ) )
{
require("open_db.php");
$res = @mysql_query( "SELECT url FROM publicidad WHERE id=$show", $conexion );
if ( mysql_num_rows($res)>0 )
{
$datos = @mysql_fetch_array($res);
@mysql_query( "UPDATE publicidad SET nVisitas=nVisitas+1 WHERE id=$show", $conexion );
header("location:$datos[0]\n\n");
}
}
function MuestraBanner( $tipo, $conexion )
{
$res = @mysql_query( "SELECT id, filename FROM publicidad WHERE tipo='$tipo' ORDER BY rand()", $conexion );
if ( mysql_num_rows($res) > 0 )
{
$datos = @mysql_fetch_array($res);
echo "";
@mysql_query( "UPDATE publicidad SET nVistos=nVistos+1 WHERE id=$datos[0]", $conexion );
} else {
echo "