hola U-Bahn|.root. te cuento mas o menos lo que yo tengo.. te lo paso en dos pasos como yo lo hice, pero probalo hacerlo en una sola y tiene que ser lo mismo...
Código PHP:
<form method="post" action="add_reg.php3">
<input type="hidden" name="botones" value="'.$mensaje.'">
categoria :<input type="Text" name="categoria"><br>
Localidad:<input type="Text" name="localidad"><br>
ubicacion:<input type="Text" name="ubicacion"><br>
precio :<input type="Text" name="precio"><br>
Precius :<input type="Text" name="precious"><br>
descripcion :<input type="Text" name="descripcion"><br> ///modificar con listin desplegable
tipo :<input type="Text" name="tipo"><br>
<input type="Submit" name="enviar" value="Aceptar información">
Código PHP:
$botones = $_POST[botones];
$categoria = $_POST[categoria];
$localidad = $_POST[localidad];
$ubicacion = $_POST[ubicacion];
$precio = $_POST[precio];
$precious = $_POST[precious];
$descripcion = $_POST[descripcion];
$tipo = $_POST[tipo];
// process form
include("conex.phtml");
$link=Conectarse();
$sql = "INSERT INTO propiedades (categoria, localidad, ubicacion, precio, botones, precious, descripcion, tipo)
VALUES ('$categoria', '$localidad', '$ubicacion', '$precio', '$botones', '$precious', '$descripcion', '$tipo')";
$result = mysql_query($sql);
eso te tiene que funcionar... sino lo entendiste bien, decime y veo si te lo puedo explicar un poco mejor..
saludos y ojala te sea de ayuda..
Manu