Aqui les muestro un ejemplo de como hacer su pagina de contactos para que pueda ser enviada:
Este codigo muestra como se cargan los datos y se envian a una direccion asignada:
Esto es un codigo PHP
<?php
$nombre = $_POST['nombre'];
$telefono = $_POST['telefono'];
$email = $_POST['email'];
$mensaje = $_POST['mensaje'];
$para='arenasenriquez@gmail.com';
$mensaje=' Los datos del solicitantes son: nombre:'.$nombre.'telefono:'.$telefono.'email:'.$email.'mensaje:'.$mensaje.'';
$desde='From: Mi pagina web <erika_arenas@yahoo.com>';
mail($para,$asunto,$mensaje,$desde);
echo 'Se ha enviado el mensaje correctamente';
?>
Y este es el codigo que va en la pagina de contactos:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!--
Design by Free CSS Templates
http://www.freecsstemplates.org
Released for free under a Creative Commons Attribution 2.5 License
Name : Morning Dew
Description: A three-column, fixed-width blog design.
Version : 1.0
Released : 20091014
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Morning Dew by Free CSS Templates</title>
<meta name="keywords" content="" />
<meta name="Morning Dew" content="" />
<link href="default.css" rel="stylesheet" type="text/css" media="screen" />
<style type="text/css">
.style2 {
color: #FFDEDE;
}
.style3 {
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
color: #FFFFFF;
}
.style4 {
text-align: center;
}
</style>
</head>
<body>
Con este codigo ya se puede aacer funcional la paguina.
No hay comentarios:
Publicar un comentario