Ver Mensaje Individual
  #7 (permalink)  
Antiguo 26/09/2011, 10:44
charlescuellar
 
Fecha de Ingreso: abril-2008
Mensajes: 310
Antigüedad: 16 años, 6 meses
Puntos: 4
Respuesta: como hacer un select como resultado dinamicos de bd

checa el codigo
completo q llevo

Código PHP:
Ver original
  1. <?php
  2.  
  3. include("connect.php");
  4. if ($_SERVER['REQUEST_METHOD'] == 'POST')
  5. {
  6.     $titulo_noticia = $_POST['titulo_noticia'];
  7.     $noticia = htmlentities($_POST['noticia']);
  8.     $categoria = $_POST['categoria'];
  9.        
  10.     if (empty($titulo_noticia))
  11.     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>");
  12.     if (empty($noticia))
  13.     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>");
  14.     if (empty($categoria))
  15.     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>");
  16.    
  17.     $link = "INSERT INTO noticias VALUES('$titulo_noticia','$noticia','$categoria','','')";
  18.     $res = mysql_query($link) or die(mysql_error());
  19.     if ($res)
  20.     die(" <div style='background:#0C3; text-align: center; color:#FFF; padding:10px;'>Noticia insertada exitosamente.</div>");
  21. }
  22. else
  23. {
  24.     echo '
  25. <br /><br />
  26. <form action="" method="POST">
  27.     Titulo Nueva Noticia <br /><br />
  28.       <input type="text" name="titulo_noticia" size="60" id="titulo_noticia"><br /><br />
  29.       Descripcion Noticia<br /><br />
  30.     <textarea name="noticia" id="noticia"cols="100" rows="20"></textarea><br /><br />
  31.     Categoria <br /><br />
  32.       <input type="text" name="categoria" size="60" id="categoria"><br /><br />
  33.    
  34.    
  35.  
  36.  
  37.     <br /><br /><input type="submit" value="Add Noticia">
  38.     </form>
  39.    
  40.  
  41.      $sql="SELECT id_categoria,categoria FROM categoria ORDER BY categoria";
  42.     * * * * $result=mysql_query($sql); * * * *
  43.     * * * * echo "<SELECT id=\"categoria\" class=\"contorno\">";
  44.     * * * * * * * * echo "<OPTION VALUE='0'>SELECCIONA</OPTION>";
  45.     * * * * * * * * while($fila=mysql_fetch_array($result))
  46.     * * * * * * * * * * * * * * {
  47.     echo "<OPTION VALUE=\"" *. $fila["categoria"]."\">". $fila["categoria"]." * *</OPTION>";
  48.  
  49.     * * * * * * * * * * * * * * }
  50.     * * * * echo "</SELECT>";  
  51.     ';
  52.      
  53.     *
  54.    
  55. }
  56. ?>