bueno tengo el siguiente problema resulta que en mi pagina web que esta en ajax puse un boton formulario que me llama a un formulario hecho en php con el cual quiero ingresar los datos a una bd... pero al momento de ingresar los datos no me los ingresa i me manda el codigo en una pagina en blanco ...
bueno aki les dejo los codigos que estoi usando ....
Estes es el del formulario
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Formulario</title>
<style type="text/css">
<!--
body,td,th {
font-size: medium;
font-family: Arial, Helvetica, sans-serif;
color: #000066;
font-weight: bold;
}
body {
background-color: #00CCFF;
background-image: url();
background-repeat: repeat-x;
}
-->
</style></head>
<body>
<form id="form1" name="form1" method="POST" action="contenidos/procesar_local.php">
<label></label>
<div align="center">
<table width="733" border="1">
<tr>
<td width="89">Codigo</td>
<td width="628"><label>
<input name="codigo" type="text" id="codigo" size="4" maxlength="4" />
</label></td>
</tr>
<tr>
<td>Nombre</td>
<td><label>
<input name="nombre" type="text" id="nombre" size="40" maxlength="40" />
</label></td>
</tr>
<tr>
<td>Correo</td>
<td><label>
<input name="correo" type="text" id="correo" size="40" maxlength="40" />
</label></td>
</tr>
<tr>
<td>Comentario</td>
<td><label>
<input name="comentario" type="text" id="comentario" size="100" maxlength="100" />
</label></td>
</tr>
</table>
</div>
<p align="center">
<label></label>
<label>Enviar
<input name="Submit" type="submit" value="Ingresar" />
</label>
</p>
</form>
</body>
</html>
================================================== =====
Este es del codigo de ingreso...
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Recibe Datos</title>
</head>
<body>
<?php
$cod = $_POST['codigo'];
$nom = $_POST['nombre'];
$cor = $_POST['correo'];
$com = $_POST['comentario'];
echo "<br>Usted ha enviado ".$cod;
echo "<br> Usted ha enviado ".$nom;
echo "<br>Usted ha enviado ".$cor;
echo "<br> Usted ha enviado ".$com;
echo "<br>";
$server="localhost";
$user="root";
$pass="";
$bbdd="datos";
$conexion=mysql_connect($server, $user, $pass) or die("Error en conexion con motor".mysql_error());
mysql_select_db($bbdd,$conexion) or die("Fallo al selecionar la BBDD");
$ingresar = "INSERT INTO registro (codigo, nombre,correo,comentario) "."VALUES ('$cod', '$nom','$cor','$com')";
mysql_query($ingresar);
echo "¡Gracias! Hemos recibido sus datos. <br>";
?>
</body>
</html>