Ver Mensaje Individual
  #2 (permalink)  
Antiguo 16/05/2007, 20:56
Avatar de lado2mx
lado2mx
Colaborador
 
Fecha de Ingreso: agosto-2001
Ubicación: Veracruz
Mensajes: 3.720
Antigüedad: 23 años, 6 meses
Puntos: 9
Re: formulario con php

Creo que lo hiciste en Dreamweaver así que checa esto:
Código HTML:
<!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=utf-8" />
<title>Untitled Document</title>
</head>

<body>
<form method="post" action="envio.php">
  <label>Nombre
  <input name="nombre" type="text" id="nombre" size="30" />
  </label>
<label>empresa
  <input name="empresa" type="text" id="empresa" size="30" />
  </label>
<label>mail
  <input name="mail" type="text" id="mail" size="30" />
  </label>
<label>enviar
  <input type="submit" name="enviar" id="enviar" value="Submit" />
  </label>
<p>&nbsp;</p></form>
</body>
</html>