Ver Mensaje Individual
  #15 (permalink)  
Antiguo 08/11/2007, 15:10
Avatar de Michael_Jival
Michael_Jival
 
Fecha de Ingreso: noviembre-2007
Mensajes: 28
Antigüedad: 17 años, 4 meses
Puntos: 0
Re: Como Hacer Para Que Php No Me Escriba Todo En Una Sola Linea Lo Que Viene De Un F

Código HTML:
<body>
<form name='formulario' id='formulario' method='post' action='enviar.php' target='_self' enctype="multipart/form-data"> 
<p>Nombre <input type='text' name='Nombre' id='Nombre'></p> 
<p>E-mail 
<input type='text' name='email' id='email'>
</p>
<p>Asunto 
  <input type='text' name='asunto' id='asunto' />
</p>
<p>Teléfono: 
  <input type="text" name="telefono" id="telefono" />
</p>
<p>Mensaje
  <textarea name="mensaje" cols="50" rows="10" id="mensaje"></textarea>
</p>
<p>Cantidad 
  <label>
  <input type="text" name="cantidad" id="cantidad" />
  </label>
</p>
<p>Material 
  <label>
  <input type="text" name="material" id="material" />
  </label>
</p>
<p>&nbsp;</p>
<p>&nbsp; </p>
<p>Adjuntar Imagen: 
  <input type='file' name='archivo1' id='archivo1'></p> 
<p>
<input type='submit' value='Enviar'> 
</p> 
</form>


</body>