checa el codigo
completo q llevo
Código PHP:
Ver original<?php
include("connect.php");
if ($_SERVER['REQUEST_METHOD'] == 'POST')
{
$titulo_noticia = $_POST['titulo_noticia'];
$categoria = $_POST['categoria'];
if (empty($titulo_noticia)) die("<div style='background:RED; color:#FFF; padding:10px;'>Por favor, llena el Titulo de la Noticia. <a style='color:white'href='javascript:history.back(1)'>Intenta de nuevo</a></div>"); die("<div style='background:RED; color:#FFF; padding:10px;'>Por favor, llena la descripcion de la noticia. <a style='color:white'href='javascript:history.back(1)'>Intenta de nuevo</a></div>"); die("<div style='background:RED; color:#FFF; padding:10px;'>Por favor, escoge una Categoria disponible. <a style='color:white'href='javascript:history.back(1)'>Intenta de nuevo</a></div>");
$link = "INSERT INTO noticias VALUES('$titulo_noticia','$noticia','$categoria','','')";
if ($res)
die(" <div style='background:#0C3; text-align: center; color:#FFF; padding:10px;'>Noticia insertada exitosamente.</div>"); }
else
{
echo '
<br /><br />
<form action="" method="POST">
Titulo Nueva Noticia <br /><br />
<input type="text" name="titulo_noticia" size="60" id="titulo_noticia"><br /><br />
Descripcion Noticia<br /><br />
<textarea name="noticia" id="noticia"cols="100" rows="20"></textarea><br /><br />
Categoria <br /><br />
<input type="text" name="categoria" size="60" id="categoria"><br /><br />
<br /><br /><input type="submit" value="Add Noticia">
</form>
$sql="SELECT id_categoria,categoria FROM categoria ORDER BY categoria";
* * * * $result=mysql_query($sql); * * * *
* * * * echo "<SELECT id=\"categoria\" class=\"contorno\">";
* * * * * * * * echo "<OPTION VALUE='0'>SELECCIONA</OPTION>";
* * * * * * * * while($fila=mysql_fetch_array($result))
* * * * * * * * * * * * * * {
echo "<OPTION VALUE=\"" *. $fila["categoria"]."\">". $fila["categoria"]." * *</OPTION>";
* * * * * * * * * * * * * * }
* * * * echo "</SELECT>";
';
*
}
?>