Cita de: Red Mx en 23 Junio 2007, 21:41 PM
no ps eso se hace con base de datos de otra manera esta wey
Hay scripts que no usan base de datos, guardan la informacion en archivos de texto, un ejemplo es el cutephp...
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes MenúCita de: Red Mx en 23 Junio 2007, 21:41 PM
no ps eso se hace con base de datos de otra manera esta wey
Cita de: †eƒ† en 6 Abril 2007, 19:58 PM
//Check if the securidy code and the session value are not blank
//and if the input text matches the stored text
if ( ($_REQUEST["txtCaptcha"] == $_SESSION["security_code"]) &&
(!empty($_REQUEST["txtCaptcha"]) && !empty($_SESSION["security_code"])) ) {
echo "<h1>Test successful!</h1>";
} else {
echo "<h1>Test failed! Try again!</h1>";
}
<?php
// aki tu e-mail
$recipiente = "fulanito@dominio.com";
// URL o enlace a la pagina hogar
$home = "http://google.com";
// mensaje k te llegara al email con los datos
$msg = "Hola $nombre
$nombre, envia el formulario de contacto con los siguientes datos:\n
Nombre: $nombre
E-mail: $email
Pagina de internet: $web
Asunto: $asunto
Mensaje del visitante:
$mensaje\n\n";
// Comprobamos que los campos del formulario se encuentren completos.
if (empty($nombre)||empty($email)||empty($asunto)||empty($mensaje)){
echo 'No llenaste las casillas';
} else{
// Enviamos el formulario con todos los datos.
mail("$recipiente", "$asunto", "$msg", "From: $nombre");
//Damos las gracias al visitante por contactarnos.
echo"<font face=tahoma size=2>
<p align=center>Gracias <b>$nombre</b>.
<p align=center>Respondere a su mensaje en un plazo de 12 horas.<br><br>
<br>
<p align=center><br>
<strong><a href=$home>Regresar al inicio</strong></a>.</p>";
}
?>
<script language="javascript" type="text/javascript" src="ajax_captcha.js"></script>
<?
//Continue the session
session_start();
//Make sure that the input come from a posted form. Otherwise quit immediately
if ($_SERVER["REQUEST_METHOD"] <> "POST")
die("You can only reach this page by posting from the html form");
//Check if the securidy code and the session value are not blank
//and if the input text matches the stored text
if ( ($_REQUEST["txtCaptcha"] == $_SESSION["security_code"]) &&
(!empty($_REQUEST["txtCaptcha"]) && !empty($_SESSION["security_code"])) ) {
echo "<h1>Test successful!</h1>";
} else {
echo "<h1>Test failed! Try again!</h1>";
}
?>
Citar<?php
//Continue the session
session_start();
//Make sure that the input come from a posted form. Otherwise quit immediately
if ($_SERVER["REQUEST_METHOD"] <> "POST")
die("You can only reach this page by posting from the html form");
// aki tu e-mail
$recipiente = "fulanito@dominio.com";
// URL o enlace a la pagina hogar
$home = "http://google.com";
// mensaje k te llegara al email con los datos
$msg = "Hola $nombre
$nombre, envia el formulario de contacto con los siguientes datos:\n
Nombre: $nombre
E-mail: $email
Pagina de internet: $web
Asunto: $asunto
Mensaje del visitante:
$mensaje\n\n";
// Comprobamos que los campos del formulario se encuentren completos.
if (empty($nombre)||empty($email)||empty($asunto)||empty($mensaje)){
echo 'No llenaste las casillas';
} else{
//Check if the securidy code and the session value are not blank
//and if the input text matches the stored text
if ( ($_REQUEST["txtCaptcha"] == $_SESSION["security_code"]) &&
(!empty($_REQUEST["txtCaptcha"]) && !empty($_SESSION["security_code"])) ) {
echo "<h1>Test successful!</h1>";
} else {
echo "<h1>Test failed! Try again!</h1>";
}
// Enviamos el formulario con todos los datos.
mail("$recipiente", "$asunto", "$msg", "From: $nombre");
//Damos las gracias al visitante por contactarnos.
echo"<font face=tahoma size=2>
<p align=center>Gracias <b>$nombre</b>.
<p align=center>Su mensaje fue enviado con <b>&#161;exito!...</b>
<p align=center>Respondere a su mensaje en un plazo de 12 horas.<br><br>
<br>
<p align=center><br>
<strong><a href=$home>Regresar al inicio</strong></a>.</p>";
}
?>
Citar//Check if the securidy code and the session value are not blank
//and if the input text matches the stored text
if ( ($_REQUEST["txtCaptcha"] == $_SESSION["security_code"]) &&
(!empty($_REQUEST["txtCaptcha"]) && !empty($_SESSION["security_code"])) ) {
echo "<h1>Test successful!</h1>";
} else {
echo "<h1>Test failed! Try again!</h1>";
}