-
Notifications
You must be signed in to change notification settings - Fork 3
/
eliminarArticuloShow.php
executable file
·36 lines (35 loc) · 1.31 KB
/
eliminarArticuloShow.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
include('session.php');
include('head.html');
include('menu.php');
?>
<script type="text/javascript" defer="defer" src="js/validacion.js" ></script>
<h2>Eliminar Articulo del Inventario</h2>
<div id="eliminar">
<form name="form" action="eliminarArticuloShowExecute.php" method="post"
title="Permite Eliminar Articulos del Inventario"
onsubmit="return confirm('Esta Seguro de Eliminar el Articulo:\n <?php echo $articulo->getNombre();?>');">
<fieldset id="articulo" >
<legend>Datos del Articulo</legend>
<br />
<input type="hidden" value="<?php echo $articulo->getId();?>" name="Id" />
<label for="nombre" class="bold">Nombre: </label>
<label for="nombre_texto"><?php echo $articulo->getNombre();?></label>
<br />
<label for="cantidad" class="bold">Cantidad: </label>
<label for="cantidad_texto"><?php echo $articulo->getCantidad();?></label>
<br />
<label for="descripcion" class="bold">Descripcion: </label>
<label for="descripcion_texto"><?php echo $articulo->getDescripcion();?></label>
<br /><br />
<input type="submit" value="Eliminar" />
<input type="button" value="Cancelar" onclick="ir('inventario.php');" />
<br />
</fieldset>
</form>
</div>
</div>
<?php
include('menuInventario.php');
include('foot.html');
?>