Hola,
Tengo un programa, el cual pregunto por un articulo me llama al siguiente programa que se llama consultarticulo.php y me muestra los datos. hasta aquí todo bien, lo que necesito es que en este programa hacer una pregunta: desea modificar alguno de los campos mostrados? y si es si que vaya a la posición donde se muestra y acepte el dato.
Código PHP:
Ver original<?php
include("conexion.php");
$nota = $_POST['nota'];
$consulta=("SELECT * FROM articulo WHERE nota = '$nota'");
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="keywords" content="" />
<meta name="description" content="" />
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1"/>
<title>Lista Articulos</title>
<link href="css/paginacion.css" type="text/css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet" type="text/css" />
<link href="css/menu.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="bg">
<div id="outer">
<div id="header">
<div id="logo">
<h1>
<a href="index.html">volver</a>
</h1>
</div><br><br>
<h2 style="font-weight:bold; color:#FF8E18; text-align:center; font-size: 36px;">Mantención de Articulos</h2>
<form method='POST' action='actualizar.php' enctype='multipart/form-data'>
{
?>
<table>
<tr>
<td>
* Codigo:
</td>
<td>
<span style = "color:white; font-weight: bold;"><?php echo $row['codigo'];?></span>
</td>
</tr>
<tr>
<td>
* Descripcion:
</td>
<td>
<span style = "color:white; font-weight: bold;"><?php echo $row['descripcion'];?></span>
</td>
</tr>
<tr>
<td>
* Medidas ancho:
</td>
<td>
<span style = "color:white; font-weight: bold;"><?php echo $row['medancho'];?></span>
</td>
</tr>
<tr>
<td>
* Madidas alto:
</td>
<td>
<span style = "color:white; font-weight: bold;"><?php echo $row['medalto'];?></span>
</td>
</tr>
<tr>
<td>
* Tela:
</td>
<td>
<span style = "color:white; font-weight: bold;"><?php echo $row['tela'];?></span>
</td>
</tr>
<tr>
<td>
* Costo Proveedor:
</td>
<td>
<span style = "color:white; font-weight: bold;"><?php echo $row['costo'];?></span>
</td>
</tr>
<tr>
<td>
* P.V.P:
</td>
<td>
<span style = "color:white; font-weight: bold;"><?php echo $row['pvp'];?></span>
</td>
</tr>
<tr>
<td>
* Descuento:
</td>
<td>
<span style = "color:white; font-weight: bold;"><?php echo $row['descuento'];?></span>
</td>
</tr>
<tr>
<td>
* Nota
</td>
<td>
<span style = "color:white; font-weight: bold;"><?php echo $row['nota'];?></span>
</td>
</tr>
<tr>
<tr>
<td>
* Fotografia:
</td>
<td>
<img src="<?php echo $row['fotografia'];?>" width="197" height="173" >
</td>
</tr>
<tr>
<tr>
<td><br><br>
<input type="submit" name="submit" class="button" value="Modifica" />
<input type="reset" class="button"/>
<a href="articulos.php" class="button">Volver</a>
</td>
</tr>
</table>
</form>
<?php
}
?>
</form>
</body>
</html>
No se donde poner la consulta y como hacer para que vaya a la posición que se indica.
Gracias y saludos