Codice PHP:
<html>
<head>
<link rel="stylesheet" type="text/css" href="cssPrototype.css" />
</head>
<?php
echo $_POST['username']." and ".$_POST['pw'];
include 'config.php';
$tableUsername="SELECT * FROM user WHERE username like '{$_POST['username']}'";
$ExistUser=mysql_query($tableUsername);
if(mysql_num_rows($EsistUser)>0)
echo "Username già esistente";
else{
include "randomString.php";
$cod=randomString();
$cod='pinguino';
$pw = md5($_POST['pw']);
echo $pw;
$sql = "INSERT INTO `t_user` (`ID`, `username`, `mail`, `PW`,`controllo`) ";
$sql .= "VALUES (NULL, '{$_POST['username']}', '{$_POST['mail']}', '{$pw}', '{$cod}');";
if(mysql_query ($sql))echo 'ok';
else echo " noWay ";
$tableUsername = "SELECT * FROM t_user WHERE username = '{$_POST['username']}'";
$t_user=mysql_query($tableUsername);
$forID=mysql_fetch_array($t_user);
if(mysql_num_rows($t_user)==0)echo "error!";
else //Invio MAIL di conferma
{
echo "\n ".$_POST['mail'];
$a=$_POST['mail'];
$oggetto="Registrazione a Calendar";
$messaggio= " Segui il link per completare la registrazione :";
$messaggio.= " <a href=\"www.fellowshipofmad.altervista.org/Calendario/testMail.php"; //
$messaggio.= "?cod=".$cod."&user=".$_POST['username']." > link </a> ";
$intestazioni= "From:fellowshipofmad@altervista.org";
$intestazioni .= "Reply-To:fellowshipofmad@altervista.org";
$intestazioni .= "X-Mailer: PHP/".phpversion();
mail($a, $oggetto, $messaggio, $intestazioni);
}
}
?>