Notice: Undefined index: nombre y apellido in C:\wamp\www\otro\Sitio sin nombre 1\regcom.php on line 4
Notice: Undefined index: direccion in C:\wamp\www\otro\Sitio sin nombre 1\regcom.php on line 5
Notice: Undefined index: telefono in C:\wamp\www\otro\Sitio sin nombre 1\regcom.php on line 6
Notice: Undefined index: comentario in C:\wamp\www\otro\Sitio sin nombre 1\regcom.php on line 7
ANEXO los dos archivos
HTML
Cita:
ACA LA CONEXION1.php<!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>Documento sin título</title>
<style type="text/css">
<!--
body,td,th {
color: #006600;
}
body {
background-color: #999999;
}
#Layer1 {
position:absolute;
width:451px;
height:203px;
z-index:1;
left: 220px;
top: 125px;
}
-->
</style></head>
<body>
<div align="center">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="372" height="28">
<param name="movie" value="BARRASUPER.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#999999" />
<embed src="BARRASUPER.swf" quality="high" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="372" height="28" bgcolor="#999999"></embed>
</object>
</div>
<p> </p>
<label for="textarea"></label>
<p align="justify"> </p>
<div id="Layer1">
<form id="form1" name="form1" method="post" action="regcom.php">
<table width="373" height="164" border="0">
<tr>
<td>Nombre y Apellido: </td>
<td><input name="nomyape" type="text" id="nombre" value="nombre y apellido" size="30" /></td>
</tr>
<tr>
<td>Direccion: </td>
<td><input name="dire" type="text" id="direccion" value="direccion" size="30" /></td>
</tr>
<tr>
<td>Telefono:</td>
<td><input name="tele" type="text" id="tel" value="telefono" size="30" /></td>
</tr>
<tr>
<td>Comentario: </td>
<td><textarea name="comen" cols="30" rows="3" value="comentario" id="com"></textarea></td>
</tr>
</table>
<p>
<label for="Submit"></label>
</p>
<p align="center">
<input type="reset" name="borrar" value="Borrar" id="borrar" />
<input type="submit" name="enviar" value="Enviar" id="enviar" />
</p>
</form>
</div>
<p align="justify"> </p>
<p align="justify"> </p>
<p align="justify"> </p>
<p align="justify"> </p>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento sin título</title>
<style type="text/css">
<!--
body,td,th {
color: #006600;
}
body {
background-color: #999999;
}
#Layer1 {
position:absolute;
width:451px;
height:203px;
z-index:1;
left: 220px;
top: 125px;
}
-->
</style></head>
<body>
<div align="center">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="372" height="28">
<param name="movie" value="BARRASUPER.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#999999" />
<embed src="BARRASUPER.swf" quality="high" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="372" height="28" bgcolor="#999999"></embed>
</object>
</div>
<p> </p>
<label for="textarea"></label>
<p align="justify"> </p>
<div id="Layer1">
<form id="form1" name="form1" method="post" action="regcom.php">
<table width="373" height="164" border="0">
<tr>
<td>Nombre y Apellido: </td>
<td><input name="nomyape" type="text" id="nombre" value="nombre y apellido" size="30" /></td>
</tr>
<tr>
<td>Direccion: </td>
<td><input name="dire" type="text" id="direccion" value="direccion" size="30" /></td>
</tr>
<tr>
<td>Telefono:</td>
<td><input name="tele" type="text" id="tel" value="telefono" size="30" /></td>
</tr>
<tr>
<td>Comentario: </td>
<td><textarea name="comen" cols="30" rows="3" value="comentario" id="com"></textarea></td>
</tr>
</table>
<p>
<label for="Submit"></label>
</p>
<p align="center">
<input type="reset" name="borrar" value="Borrar" id="borrar" />
<input type="submit" name="enviar" value="Enviar" id="enviar" />
</p>
</form>
</div>
<p align="justify"> </p>
<p align="justify"> </p>
<p align="justify"> </p>
<p align="justify"> </p>
</body>
</html>
Código PHP:
<?php
$link=mysql_connect("localhost", "root", "");
mysql_select_db("supermercado",$link) OR DIE ("Error: Imposible Conectar");
?>
Código PHP:
<?php
include ("conexion1.php");
$nomyape=$_POST['nombre y apellido'];
$dire=$_POST['direccion'];
$tele=$_POST['telefono'];
$comen=$_POST['comentario'];
$conexion=mysql_connect("localhost","root") or die ("no se pudo conectar a la base de datos");
mysql_select_db("supermercado");
$link=mysql_query ("insert into 'super'(nombre y apellido, direccion, telefono, comentario) VALUES ('$nomyape', '$dire', '$tele', '$comen')");
echo "<h1>Tus comentarios han sido enviados...</h1><br>";
mysql_close($conexion);
?>