ragazzi vorrei chiedervi un info devo salvare due dati nel database io tramite flash invio al php il php invia a mel email e al utente questo e il files
e questo e il files di connessione al dbCodice PHP:<?php
include_once("include/config.php");
//include_once("include/auth.lib.php");
$adminaddress = "info@marikwebdesigner.com";
$siteaddress ="http://www.marikwebdesigner.com";
$sitename = "marikwebdesigner";
//No need to change anything below ...
// Gets the date and time from your server
$date = date("d/m/Y H:i:s");
// Gets the IP Address
if ($_SERVER['REMOTE_ADDR'] == "") $ip = "no ip";
else $ip = gethostbyaddr($_SERVER['REMOTE_ADDR']);
// Gets the POST Headers - the Flash variables
$action = $_POST['action'] ;
$email = $_POST['email'] ;
$name = $_POST['name'] ;
$comments = $_POST['comments'] ;
$telefono = $_POST['telefono'] ;
$oggetto = $_POST['oggetto'] ;
//Process the form data!
// and send the information collected in the Flash form to Your nominated email address
if ($action == "send") {
//
mail ("$adminaddress","informazioni",
"L' utente: $name si è iscritto alla MailingList \n
------------------------------
Name Utente: $name
EmailUtente: $email\n
------------------------------
Logged Info :
------------------------------
Using: {$_SERVER['HTTP_USER_AGENT']}
Hostname: $ip
IP address: {$_SERVER['REMOTE_ADDR']}
Date/Time: $date","FROM:$email" ) ;
//This sends a confirmation to your visitor
mail ("$email","Re:",
"Salve $name,\n
Per confermare l'iscizione alla Newsletter Le basta cliccare sul link sottostante $siteaddress/homeita/mailinglist/conferma.php?email=$email&name=$name\">.\n
Saluti dallo Staff di $sitename
$siteaddress","FROM:$adminaddress ") ;
//Confirmation is sent back to the Flash form that the process is complete
$sendresult = "Thank you. You will receive a confirmation email shortly.";
$send_answer = "answer=";
$send_answer .= rawurlencode($sendresult);
echo $send_answer;
} //
?>

Rispondi quotando