<?php
if(isset($_POST['Tessera'])) {
$dbhost = '';
$dbuser = '';
$dbpass = '';
$conn = mysql_connect($dbhost, $dbuser, $dbpass);
if(! $conn ) {
die('Could not connect: ' . mysql_error());
}
if(! get_magic_quotes_gpc() ) {
$Tessera = addslashes ($_POST['Tessera']);
$Codice_agenzia = addslashes ($_POST['Codice_agenzia']);
$Agenzia = addslashes ($_POST['Agenzia']);
$Nome = addslashes ($_POST['Nome']);
$Cognome = addslashes ($_POST['Cognome']);
$Codice_fiscale = addslashes ($_POST['Codice_fiscale']);
$Codice_cliente = addslashes ($_POST['Codice_cliente']);
$Indirizzo = addslashes ($_POST['Indirizzo']);
$Comune = addslashes ($_POST['Comune']);
$Data_di_nascita = addslashes ($_POST['Data_di_nascita']);
$Indirizzo_email = addslashes ($_POST['Indirizzo_email']);
$Telefono = addslashes ($_POST['Telefono']);
$Username = addslashes ($_POST['Username']);
$Password = addslashes ($_POST['Password']);
$Conferma_password = addslashes ($_POST['Conferma_password']);
}else {
$Tessera = $_POST['Tessera'];
$Codice_agenzia = $_POST['Codice_agenzia'];
$Agenzia = $_POST['Agenzia'];
$Cognome = $_POST['Cognome'];
$Nome = $_POST['Nome'];
$Codice_fiscale = $_POST['Codice_fiscale'];
$Codice_cliente = $_POST['Codice_cliente'];
$Indirizzo = $_POST['Indirizzo'];
$Comune = $_POST['Comune'];
$Data_di_nascita = $_POST['Data_di_nascita'];
$Indirizzo_email = $_POST['Indirizzo_email'];
$Telefono = $_POST['Telefono'];
$Username = $_POST['Username'];
$Password = $_POST['Password'];
$Conferma_password = $_POST['Conferma_password'];
}
$sql = "INSERT INTO Profilo ". "(Tessera, Codice_agenzia, Agenzia, Cognome, Nome, Codice_fiscale, Codice_cliente, Indirizzo, Comune, Data_di_nascita, Indirizzo_email, Telefono, Username, Password, Conferma_password)"." VALUES('$Tessera', '$Codice_agenzia', '$Agenzia', '$Cognome','$Nome','$Codice_fiscale','$Codice_cliente', '$Indirizzo', '$Comune','$Data_di_nascita','$Indirizzo_email','$Telefono','$Username','$Password','$Conferma_password')";
mysql_select_db('');
$retval = mysql_query( $sql, $conn );
if(! $retval ) {
die('Could not enter data: ' . mysql_error());
}
$generator = new \Picqer\Barcode\BarcodeGeneratorPNG();
echo 'TESSERA ATTIVATA CORRETTAMENTE!';
mysql_close($conn);
}else {
?>