File: /home/ednermusika/ednergranados.com/admin/galeria_detalle_admin.php
<?php require_once('../Connections/con_edner.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
$colname_galeria_nombre = "-1";
if (isset($_GET['gal_consecutivo'])) {
$colname_galeria_nombre = $_GET['gal_consecutivo'];
}
mysql_select_db($database_con_edner, $con_edner);
$query_galeria_nombre = sprintf("SELECT gal_consecutivo, gal_titulo FROM galeria WHERE gal_consecutivo = %s", GetSQLValueString($colname_galeria_nombre, "int"));
$galeria_nombre = mysql_query($query_galeria_nombre, $con_edner) or die(mysql_error());
$row_galeria_nombre = mysql_fetch_assoc($galeria_nombre);
$totalRows_galeria_nombre = mysql_num_rows($galeria_nombre);
$colname_galeria_detalle = "-1";
if (isset($_GET['gal_consecutivo'])) {
$colname_galeria_detalle = $_GET['gal_consecutivo'];
}
mysql_select_db($database_con_edner, $con_edner);
$query_galeria_detalle = sprintf("SELECT gal_consecutivo, gad_consecutivo, gal_id, gad_descripcion, gad_ruta, gad_thumbnail, gad_imagen, gad_orientacion, gad_activo FROM galeria_detalle WHERE gal_consecutivo = %s", GetSQLValueString($colname_galeria_detalle, "int"));
$galeria_detalle = mysql_query($query_galeria_detalle, $con_edner) or die(mysql_error());
$row_galeria_detalle = mysql_fetch_assoc($galeria_detalle);
$totalRows_galeria_detalle = mysql_num_rows($galeria_detalle);
//initialize the session
if (!isset($_SESSION)) {
session_start();
}
?>
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Galer�a (Agregar)</title>
<link href="css/admin.css" rel="stylesheet" type="text/css" />
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><h1>Fotos de <?php echo $row_galeria_nombre['gal_titulo']; ?></h1></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td><a href="galeria_detalle_altas.php?gal_consecutivo=<?php echo $row_galeria_nombre['gal_consecutivo']; ?>" class="ligas_menu_principal">« Nueva foto»</a></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td><a href="galeria_admin.php" class="ligas_menu_principal">« Regresar »</a></td>
</tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td> </td>
</tr>
<tr>
<td><hr class="hr_principal" /></td>
</tr>
</table>
<blockquote>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="26%"><h4>Descripción</h4></td>
<td width="18%"><h4>Imagen</h4></td>
<td width="17%"><h4>Activo</h4></td>
<td width="10%"><h6> </h6></td>
<td width="10%"><h6> </h6></td>
</tr>
<tr>
<td colspan="6"><hr class="hr_principal" /></td>
</tr>
<?php do { ?>
<?php if ($totalRows_galeria_detalle > 0) { // Show if recordset not empty ?>
<tr>
<td><p><?php echo $row_galeria_detalle['gad_descripcion']; ?></p></td>
<td><p><img src="../<?php echo $row_galeria_detalle['gad_ruta'].$row_galeria_detalle['gad_thumbnail']; ?>" border="1" /></p></td>
<td><p><?php echo $row_galeria_detalle['gad_activo']; ?></p></td>
<td><a href="galeria_detalle_cambios.php?gal_consecutivo=<?php echo $row_galeria_detalle['gal_consecutivo']; ?>&gad_consecutivo=<?php echo $row_galeria_detalle['gad_consecutivo']; ?>" class="ligas_ajustes">« Modificar »</a></td>
<td><a href="galeria_detalle_bajas.php?gal_consecutivo=<?php echo $row_galeria_detalle['gal_consecutivo']; ?>&gad_consecutivo=<?php echo $row_galeria_detalle['gad_consecutivo']; ?>" class="ligas_ajustes">« Eliminar »</a></td>
</tr>
<?php } // Show if recordset not empty ?>
<tr>
<td colspan="6"> </td>
</tr>
<tr>
<td colspan="6"><hr width="100%" size="1" class="hr_renglones" /></td>
</tr>
<?php } while ($row_galeria_detalle = mysql_fetch_assoc($galeria_detalle)); ?>
</table>
</blockquote>
</body>
</html>
<?php
mysql_free_result($galeria_nombre);
mysql_free_result($galeria_detalle);
?>