Código HTML:
<? $host = "localhost"; $usuario = "ddddd"; $password = "dddddd"; $db = "ddddddd"; $enlace = mysql_connect($host, $usuario, $password); mysql_select_db($db,$enlace); $id=$_GET['id']; if($_POST['ENVIAR']) { $galeriafoto_index1 = $_POST[galeriafoto_index1]; $metatag1 = $_POST[metatag1]; // Aqui es el comienzo de actualizar mysql_query("UPDATE weblog SET galeriafoto_index='$galeriafoto_index1', metatag='$metatag1' where id='$id'",$enlace); echo "<center><h3>Su Contenido ha sido editado</h3></center>" ; // final de actualizacion } ?> <?php $id=$_GET['id']; $resp = mysql_query("select * from weblog where id=14 ") ; while($row = mysql_fetch_array($resp)) { ?> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Paginas - Sistema de manejo de contenidos</title> <script src="css/ckeditor.js"></script> <link rel="stylesheet" href="css/sample.css"> <link rel="stylesheet" media="screen" href="css/styles.css" > <link rel="stylesheet" media="screen" href="general.css" > </head> <body> <div class="titulo">Publicar Fotos en la Portada</div> <form class="contact_form" method="post" enctype="multipart/form-data" action="fotosgallery.php?id=14"> <input type=hidden name=ENVIAR value=drako> <div class="titulot"> Galeria de Fotos - Portada Web</div> <table border="1" cellspacing="0" cellpadding="5"> <tr> <td>Fotos para Portada:</td> <td colspan="2" align="left"> <textarea name="galeriafoto_index1" rows="7" cols="31" style="width:450px;" placeholder="Escribe URL de las Fotos"> <?=$row[galeriafoto_index]?> </textarea> </td> </tr> <tr> <td width="19%">Meta Tag:</td> <td><input style="width:180px;" name="metatag1" type="text" placeholder="Palabras claves" value="<?=$row[metatag]?>"/></td> <td width="13%" align="center" valign="middle"><button class="submit" type="submit" name="ENVIAR" id="ENVIAR">Guardar</button></td> </tr> </table> </body> </html> <? } ?>
galeriafoto_index
metatag
y la tabla se llama weblog, ayudenme que este formulario no actualiza los datos
![Decabeza](http://static.forosdelweb.com/fdwtheme/images/smilies/decabeza.png)