<?php
$host = 'localhost';
$username = 'admin2';
$password = 'vaptek';
$db_name = 'vaportek_db';
// Connect to server and select database.
$db = new mysqli($host, $username, $password, $db_name);
if($db->connect_errno){
die('Unable to connect to database [' . $db->connect_error . ']');
}
// username and password sent from form
$myusername=$_POST['userId'];
$mypassword=$_POST['userPw'];
$stmt = $db->prepare("SELECT role FROM users WHERE `username`=? and `password`=?");
/* bind parameters for username and password */
$stmt->bind_param('ss', $myusername, $mypassword);
/* execute query */
$stmt->execute();
// If result matched $myusername and $mypassword, table row must be 1 row
if ($test == 1) {
// bind the result to a variable
$stmt->bind_result($role);
$stmt->fetch_object()->$role;
switch($role){
case 'director':
header("location: director.php");
break;
case 'customer':
header("location: cust.php");
break;
case 'production manager':
header("location: prodmanager.php");
break;
case 'account admin':
header("location: accountadmin.php");
exit();
default:
echo "Wrong staff ID or password";
}
$stmt->close();
}
$db->close();
?>
を使用して、それはちょうど私に空白のページを与え、=私はエコー$テストを行っているlogin.phpPHPはmysqliの
からで動きません$ stmt-> affected_rows; -1として表示されている私は非常にPHPに精通していないと本当に間違っているか理解していない。
あなたはPDOかMySQLiを使いたいですか? :/ – Juned
こんにちは、申し訳ありませんでした。私は現在mysqliを使用していますが、私はpdoを試していて、どちらかが動作するようにはできませんでした。 –
これはPDOではありませんが、MySQLiもOKです。とにかく、何もエコーされていないので、空白の画面が表示されています。これは、 '$ test'がnullで' if'ボディがスキップされるためです。 –