no me modifica los datos :S ..
Aqui pongo los 2 archivos:
formu.php
Código PHP:
<?php
$conexion = mysql_connect("localhost", "root", "") or die("Problemas en la conexion");
mysql_select_db("bbdd", $conexion) or die ("Problema al seleccionar bd");
$strselect=mysql_query("SELECT * FROM secciones WHERE idseccion =" .$_REQUEST['cod'].";" ,$conexion);
$fila = mysql_fetch_array($strselect);
?>
<form action="archivo_modificar.php?cod=<?php echo $_REQUEST['cod']; ?>" method="post">
Seccion 1:<input type="text" name="seccion1" value="<?php echo $fila['nombre1']; ?>"/>
<input type="submit" name="enviar"value="Enviar secciones" /><br />
</form>
</body>
</html>
Código PHP:
<?php
$vari = $_REQUEST['seccion1'];
$conexion = mysql_connect("localhost", "root", "") or die("Problemas en la conexion");
mysql_select_db("bbdd", $conexion) or die ("Problema al seleccionar bd");
$strselect="UPDATE secciones SET nombre1 = ".$_POST["seccion1"]." WHERE idseccion = ".$_GET['cod']." ";
mysql_query ($strselect , $conexion);
?>
saludos y gracias aquel/lla que me logre ayudar