Tema: Unir datos
Ver Mensaje Individual
  #10 (permalink)  
Antiguo 18/07/2012, 11:45
webankenovi
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: Unir datos

mira ya entendi lo que quieres , concatenar 2 select y la direccion es unir los 3 post en una cadena y despues insertarlo en la consulta

Código PHP:
Ver original
  1. <?php
  2. $state = false;
  3. if ($_POST['action'] == "add") {
  4.     $conexion = mysql_connect("localhost", "root", "123456");
  5.     mysql_select_db("davincci", $conexion);
  6.    
  7.     $cadena=$_POST['uno'].$_POST['dos'].$_POST['dir']; // ojo a esto a si debe de ser
  8.    
  9.     $que = "INSERT INTO empresa (nombre, direccion, telefono) ";
  10.     $que.= "VALUES ('".$_POST['nombre']."', '".$cadena."', '".$_POST['fono']."') ";
  11.     $res = mysql_query($que, $conexion) or die(mysql_error());
  12.     $state = true;
  13. }
  14. ?>
  15.  
  16. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  17. <html xmlns="http://www.w3.org/1999/xhtml">
  18. <head>
  19. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  20. <title>Insertar datos en MySQL</title>
  21. <style type="text/css">
  22. <!--
  23. body {
  24.     font-family: "Trebuchet MS", Tahoma, Arial;
  25.     font-size: 12px;
  26.     color: #333333;
  27. }
  28. h2 {
  29.     font-size: 16px;
  30.     color: #CC0000;
  31. }
  32. input, select {
  33.     font-family: "Trebuchet MS", Tahoma, Arial;
  34.     font-size: 11px;
  35.     color: #666666;
  36. }
  37. -->
  38. </style>
  39. </head>
  40. <body>
  41. <h2>Insertar datos en MySQL</h2>
  42. <form id="insertar" name="insertar" method="post" action="">
  43.   <p>Nombre:
  44.     <input name="nombre" type="text" id="nombre" size="50" />
  45.   </p>
  46.   <p>Menu
  47.     <label>
  48.     <select name="uno" id="uno">
  49.       <option value="BG">BOGOTA</option>
  50.       <option value="CA">CALI</option>
  51.         </select>
  52.     </label>
  53. </p>
  54.   <p>Menu 2
  55.     <label>
  56.     <select name="dos" id="dos">
  57.       <option value="PT">PUTUMAYO</option>
  58.       <option value="LL">LLANOS</option>
  59.         </select>
  60.     </label>
  61.   </p>
  62.   <p>Direccion:
  63.     <input name="dir" type="text" id="dir" size="50" />
  64.   </p>
  65.   <p>Telefono:
  66.     <input name="fono" type="text" id="fono" size="50" />
  67.   </p>
  68.   <input type="submit" name="Submit" value="Insertar Registro" />
  69.   <input type="hidden" name="action" value="add" />
  70. </form>
  71. <?php if ($state) { ?>
  72. <p><em>Registro insertado correctamente</em></p>
  73. <?php } ?>
  74. </body>
  75. </html>