Lo spazio di archiviazione non è finito.
Questo è il codice in php che uso per connettermi al DB.
Log in form
Codice PHP:
<?php
$host = 'localhost';
$user = 'lahos';
$pass = '';
$db = 'my_lahos';
if (!mysql_connect($host, $user, $pass) || !mysql_select_db($db)) die(mysql_error());
session_start();
if (isset($_POST['username']) && isset($_POST['password'])) {
$username = $_POST["username"];
$password = $_POST["password"];
if (!empty($username) && !empty($password)) {
$query = "SELECT IDUtente, Nome FROM `Utenti` WHERE Username='$username' AND password='".md5($password)."';";
if ($query_table = mysql_query($query)) {
$query_num_rows = mysql_num_rows($query_table);
if($query_num_rows==0)echo 'Invalid username/password combination.';
else if ($query_num_rows == 1) {
$_SESSION['user_id'] = mysql_result($query_table, 0, 'IDUtente');;
$_SESSION['user_name'] = mysql_result($query_table, 0, 'Nome');
header ('Location: my.php');
}
}
} else {
echo "You must supply username and password<br>";
}
}
?>