notiedit.php
Código PHP:
<div align="center">
<?
//Conexion con la base
mysql_connect("pub-db.m2kcore.com","cmblackriver","xx"); ?>
<FORM METHOD="POST" ACTION="<? echo "$PHP_SELF?admin=editandonoti" ?>">Título<br>
<? //Creamos la sentencia SQL y la ejecutamos
$sSQL="Select * From cm4anoti Order By id DESC";
$result=mysql_db_query("cmblackriver",$sSQL); ?>
<select name="nombre">
<? //Generamos el menu desplegable
while ($row=mysql_fetch_array($result))
{ ?> <option><? echo $row["nombre"]; ?><? } ?>
</select>
<input name="submit" type="submit" value="Editar" class="boton">
</FORM>
</div>
Código PHP:
<? include ('../conex.php');
$sql="SELECT * FROM cm4anoti WHERE nombre='$nombre'";
$result=mysql_query($sql,$conexion);
while($row=mysql_fetch_array($result)){ ?>
<form action="notifin.php" method="post">
<table width="66%" height="81" border="0">
<tr>
<td width="15%" valign="top"><font size="2">Título:</font></td>
<td width="85%" valign="top"><input name="nombre" type="text" class="texto" id="nombre" value="<?= $row['nombre']; ?>" size="30"></td>
</tr>
<tr>
<td valign="top"><font size="2">Mensaje:</font></td>
<td valign="top"><textarea name="mensaje" cols="30" rows="6" class="texto" id="mensaje"><?= $row['mensaje']; ?></textarea></td>
</tr>
<tr>
<td valign="top"><font size="2">Por:</font></td>
<td valign="top"><input name="por" type="text" class="texto" id="por" value="<?= $row['por']; ?>" size="30">
</td>
</tr>
<tr>
<td colspan="2" valign="top"><input type="submit" value="Actualizar" class="boton">
<input name="reset" type="reset" class="boton" value="Reiniciar"></td>
</tr>
</table>
</form>
<? } ?>
Código PHP:
<?
$nombre=$_POST['nombre'];
$mensaje=$_POST['mensaje'];
$por=$_POST['por'];
include("../conex.php");
$sSQL="Update cm4anoti Set nombre='$nombre', mensaje='$mensaje', por='$por' Where id='$id'";
mysql_query($sSQL,$conexion);
?>
gracias por to