editar_pelicula.php
Código
<!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=utf-8" /> <title>Documento sin título</title> <style type="text/css"> <!-- body { background-color: #9FE0FF; } --> </style></head> <body><? include("config.php"); $id=$_GET['id']; $link=Conectarse(); $id2 = $row["id"]; $nombre = $row["nombre"]; $embed = $row["embed"]; $imagen = $row["imagen"]; $duracion = $row["duracion"]; $descripcion = $row["descripcion"]; $descarga = $row["descarga"]; } ?> <table width="40%" border="0" align="center"> <tr> <td align="center"><p><b>Editar película</b><br></td> </tr> <tr> <td align="center"><form id="form1" name="form1" method="request" action="1.php?id=<? echo $id2; ?>"> <p> <label> Nombre: <input name="nombre" type="text" id="textfield" value="<? echo $nombre; ?>" size="50" /> </label> </p> <p>Embed: <br> <textarea name="embed" cols="40" rows="8" id="textfield2"><? echo $embed; ?></textarea> </p> <p>Imagen: <input name="imagen" type="text" id="textfield3" size="50" value="<? echo $imagen; ?>" /> </p> <p>Duración: <input name="duracion" type="text" id="textfield4" size="50" value="<? echo $duracion; ?>" /> </p> <p>Descripción:<br> <textarea name="descripcion" cols="40" rows="8" id="textfield5"><? echo $descripcion; ?></textarea> </p> <p>Descarga:<br> <label> <textarea name="descarga" cols="40" rows="8" id="textfield6"><? echo $descarga; ?></textarea> </label> </p> <p> <label> <input type="submit" name="button" id="button" value="Editar" /> </label> </p> <p> </p> </form></td> </tr> </table> </body> </html>
1.php
Código
<?php $id = $_GET["id"]; $nombre = $_REQUEST["nombre"]; $embed = $_REQUEST["embed"]; $imagen = $_REQUEST["imagen"]; $duracion = $_REQUEST["duracion"]; $descripcion = $_REQUEST["descripcion"]; $descarga = $_REQUEST["descarga"]; if (!$con) { } mysql_query("UPDATE pelis SET nombre = '$nombre', embed = '$embed', imagen = '$imagen', duracion = '$duracion', descripcion = '$descripcion', descarga = '$descarga' WHERE id = '$id'"); ?>
el caso es que me da error cuando me lleva a 1.php
Código
Notice: Undefined index: id in C:\xampp\htdocs\editar_spraycine\1.php on line 2
como bien dice la direccion me devuelve todos los parametros menos el id y sin esta no sabe que registro editar
Código
http://localhost/editar/1.php?nombre=10+Minutes+aaaa&embed=embed&imagen=http%3A%2F%2Fwww.web.com%2Fimages%2F10min.jpg&duracion=68+minutos&descripcion=desc&button=Editar
el caso es que he revisado el código y no se porque no aparece,aver si me podeis ayudar, gracias de antemano.
Un saludo!