-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.php
executable file
·41 lines (29 loc) · 1.39 KB
/
signup.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
require ('smarty.php');
require_once ('dbmanage.php');
// セッション開始
$signUpMessage = "";
$errorMessage = "";
if (!empty($_POST['username']) && !empty($_POST['password']) && !empty($_POST['password2'])){
if (mb_strlen($_POST['username']) < 25 && mb_strlen($_POST['password']) < 100 && $_POST['password'] == $_POST['password2']){
$username = htmlspecialchars($_POST['username']);
$pw = htmlspecialchars($_POST['password']);
$dsn = 'mysql:dbname=board2;host=localhost;';
$user ='root';
$password = 'root';
try {
$db = new PDO($dsn,$user,$password, array(PDO::ATTR_ERRMODE=>PDO::ERRMODE_EXCEPTION));
$stmt = $db->prepare("INSERT INTO menber(name, password) VALUES(:name, :password)");
$stmt->bindParam(':name', $username);
$stmt->bindParam(':password', password_hash($pw, PASSWORD_DEFAULT));
$stmt->execute();
$userid = $db->lastinsertid();
$signUpMessage = '登録が完了しました。あなたの登録IDは '. $userid. ' です。パスワードは '. $pw. ' です。'; // ログイン時に使用するIDとパスワード
} catch (PDOException $e) {
$errorMessage = 'データベースエラー';
}
}
}
$smarty->assign('message', $signUpMessage);
$smarty->assign('emessage',$errorMessage);
$smarty->display('signup.tpl');