114 lines
4.4 KiB
PHP
114 lines
4.4 KiB
PHP
|
|
<?php
|
|||
|
|
session_start();
|
|||
|
|
|
|||
|
|
if (!session_is_registered("clave_audio")) {
|
|||
|
|
include("../login.php");
|
|||
|
|
if (!$continuar) exit;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
include('../db.php');
|
|||
|
|
include("../../_incl/code.php");
|
|||
|
|
?>
|
|||
|
|
<html>
|
|||
|
|
<head>
|
|||
|
|
<title>ocasion</title>
|
|||
|
|
<link href="../sformi.css" rel="stylesheet" type="text/css">
|
|||
|
|
<script type="text/javascript" src="../../_incl/code.js"></script>
|
|||
|
|
<script language="JavaScript" type="text/JavaScript">function doSubmit() { document.formulario.submit(); }</script>
|
|||
|
|
</head>
|
|||
|
|
<body>
|
|||
|
|
<?php
|
|||
|
|
|
|||
|
|
if(isset($_REQUEST['op'])) {
|
|||
|
|
$operacion = $_REQUEST['op'];
|
|||
|
|
$id = $_REQUEST['id'];
|
|||
|
|
} else {
|
|||
|
|
$operacion = "add";
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
$ocasion_categoria = "";
|
|||
|
|
$ocasion_nombre = "";
|
|||
|
|
$ocasion_descripcion = "";
|
|||
|
|
$ocasion_estado = "";
|
|||
|
|
$ocasion_pvp = "";
|
|||
|
|
$ocasion_precio = "";
|
|||
|
|
$ocasion_unidades = "";
|
|||
|
|
|
|||
|
|
switch($operacion)
|
|||
|
|
{
|
|||
|
|
case "add";
|
|||
|
|
break;
|
|||
|
|
|
|||
|
|
case "edit";
|
|||
|
|
$conn = db_connect();
|
|||
|
|
if($conn) {
|
|||
|
|
$query = "SELECT ocasion_id, ocasion_categoria, ocasion_nombre, ocasion_descripcion, ocasion_estado, ocasion_pvp, ocasion_precio, ocasion_unidades FROM shoop_ocasion WHERE ocasion_id = " . $id;
|
|||
|
|
$result = mysql_query($query, $conn);
|
|||
|
|
if (mysql_num_rows($result)) {
|
|||
|
|
$row = mysql_fetch_array($result);
|
|||
|
|
$ocasion_categoria = $row['ocasion_categoria'];
|
|||
|
|
$ocasion_nombre = $row['ocasion_nombre'];
|
|||
|
|
$ocasion_descripcion = $row['ocasion_descripcion'];
|
|||
|
|
$ocasion_estado = $row['ocasion_estado'];
|
|||
|
|
$ocasion_pvp = $row['ocasion_pvp'];
|
|||
|
|
$ocasion_precio = $row['ocasion_precio'];
|
|||
|
|
$ocasion_unidades = $row['ocasion_unidades'];
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
break;
|
|||
|
|
}
|
|||
|
|
?>
|
|||
|
|
<form method="post" action="ocasion_db.php" name="formulario" enctype="multipart/form-data">
|
|||
|
|
<input name="op" type="hidden" value="<?= $operacion; ?>">
|
|||
|
|
<input name="id" type="hidden" value="<?= $id; ?>">
|
|||
|
|
<table border="0" cellspacing="0" cellpadding="0">
|
|||
|
|
<tr><td width="200" class= "lbl">Categoría</td></tr>
|
|||
|
|
<tr><td width="" class="data"><select name="ocasion_categoria" id="ocasion_categoria" style="width:250px">
|
|||
|
|
<option value="1">Altavoces</option>
|
|||
|
|
<option value="2">Electrónicas</option>
|
|||
|
|
<option value="3">Reproductores de CD, convertidores D/A, etc.</option>
|
|||
|
|
<option value="4">Varios</option>
|
|||
|
|
</select></td></tr>
|
|||
|
|
<script language="JavaScript" type="text/JavaScript"> selectOption('ocasion_categoria', '<?= $ocasion_categoria; ?>'); </script>
|
|||
|
|
<tr><td><img src="img/d.gif" width="100" height="5"></td></tr>
|
|||
|
|
<tr>
|
|||
|
|
<td width="200" class= "lbl">Nombre</td>
|
|||
|
|
</tr>
|
|||
|
|
<tr><td width="" class="data"><input name="ocasion_nombre" id="ocasion_nombre" type="text" size="50" maxlength="100" value="<?= $ocasion_nombre; ?>"></td></tr>
|
|||
|
|
<tr><td><img src="img/d.gif" width="100" height="5"></td></tr>
|
|||
|
|
<tr><td width="200" class= "lbl">Descripci<EFBFBD>n</td></tr>
|
|||
|
|
<tr><td width="" class="data"><textarea name="ocasion_descripcion" cols="50"><?= $ocasion_descripcion; ?></textarea></td></tr>
|
|||
|
|
<tr><td><img src="img/d.gif" width="100" height="5"></td></tr>
|
|||
|
|
<tr><td width="200" class= "lbl">Estado</td></tr>
|
|||
|
|
<tr><td width="" class="data"><input name="ocasion_estado" style="width:px" value="<?= $ocasion_estado; ?>">
|
|||
|
|
<tr><td><img src="img/d.gif" width="100" height="5"></td></tr>
|
|||
|
|
<tr><td width="200" class= "lbl">PVP</td></tr>
|
|||
|
|
<tr><td width="" class="data"><input name="ocasion_pvp" type="text" value="<?= $ocasion_pvp; ?>" size="10" maxlength="10"></td></tr>
|
|||
|
|
<tr><td><img src="img/d.gif" width="100" height="5"></td></tr>
|
|||
|
|
<tr><td width="200" class= "lbl">Precio</td></tr>
|
|||
|
|
<tr><td width="" class="data"><input name="ocasion_precio" type="text" value="<?= $ocasion_precio; ?>" size="10" maxlength="10"></td></tr>
|
|||
|
|
<tr><td><img src="img/d.gif" width="100" height="5"></td></tr>
|
|||
|
|
<tr><td width="200" class= "lbl">Unidades</td></tr>
|
|||
|
|
<tr><td width="" class="data"><input name="ocasion_unidades" type="text" value="<?= $ocasion_unidades; ?>" size="3" maxlength="3"></td></tr>
|
|||
|
|
<tr><td><img src="img/d.gif" width="100" height="5"></td></tr>
|
|||
|
|
</table>
|
|||
|
|
<table border="0" cellspacing="0" cellpadding="0">
|
|||
|
|
<tr>
|
|||
|
|
<td>
|
|||
|
|
<a href="ocasion.php" class="button">[ atrás ]</a>
|
|||
|
|
<a href="javascript:doSubmit();" class="button">[ <?= $operacion; ?> ]</a>
|
|||
|
|
</td>
|
|||
|
|
<?php
|
|||
|
|
if($operacion == 'edit') {
|
|||
|
|
?>
|
|||
|
|
<td>
|
|||
|
|
<a href="ocasion_db.php?op=del&id=<?= $prod_id; ?>" onClick="return confirm('Estás seguro de querer borrar este artículo?')" class="button">[ borrar ]</a>
|
|||
|
|
</td>
|
|||
|
|
<?php
|
|||
|
|
}
|
|||
|
|
?>
|
|||
|
|
</tr>
|
|||
|
|
</table>
|
|||
|
|
</form>
|
|||
|
|
</body>
|
|||
|
|
</html>
|