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<?php
$state = false;
if ($_POST['action'] == "add") {
$cadena=$_POST['uno'].$_POST['dos'].$_POST['dir']; // ojo a esto a si debe de ser
$que = "INSERT INTO empresa (nombre, direccion, telefono) ";
$que.= "VALUES ('".$_POST['nombre']."', '".$cadena."', '".$_POST['fono']."') ";
$state = true;
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Insertar datos en MySQL</title>
<style type="text/css">
<!--
body {
font-family: "Trebuchet MS", Tahoma, Arial;
font-size: 12px;
color: #333333;
}
h2 {
font-size: 16px;
color: #CC0000;
}
input, select {
font-family: "Trebuchet MS", Tahoma, Arial;
font-size: 11px;
color: #666666;
}
-->
</style>
</head>
<body>
<h2>Insertar datos en MySQL</h2>
<form id="insertar" name="insertar" method="post" action="">
<p>Nombre:
<input name="nombre" type="text" id="nombre" size="50" />
</p>
<p>Menu
<label>
<select name="uno" id="uno">
<option value="BG">BOGOTA</option>
<option value="CA">CALI</option>
</select>
</label>
</p>
<p>Menu 2
<label>
<select name="dos" id="dos">
<option value="PT">PUTUMAYO</option>
<option value="LL">LLANOS</option>
</select>
</label>
</p>
<p>Direccion:
<input name="dir" type="text" id="dir" size="50" />
</p>
<p>Telefono:
<input name="fono" type="text" id="fono" size="50" />
</p>
<input type="submit" name="Submit" value="Insertar Registro" />
<input type="hidden" name="action" value="add" />
</form>
<?php if ($state) { ?>
<p><em>Registro insertado correctamente</em></p>
<?php } ?>
</body>
</html>