私はPHPを初めて使用します。ユーザーAとpw123(テスト)を使用してMicrosoftAccessデータベースを作成しました。Webサイトで見つけようとしましたが、残念ながら、実際にMS Accessに対して認証できるものは見つかりませんでした。ほとんどのWebサイトは、純粋にSQLに関するものであり、私が本当に望んでいないことです。助けてください。
現在ここに私のコードがあります
Login.php
<html>
<body>
<?php
session_start();
// dBase file
include "database.php";
<form id='login' action='login.php' method='post' accept-charset='UTF-8'>
<fieldset >
<legend>Please log in your employee ID and Password to apply for leave.</legend>
<input type='hidden' name='submitted' id='submitted' value='1'/>
<div class='short_explanation'>* required fields</div>
<br>
<label for='username'>UserName*:</label>
<input type='text' name='username' id='username' maxlength="50" />
<br>
<label for='password'>Password*: </label>
<input type='password' name='password' id='password' maxlength="50" />
<br><br>
<input type='submit' name='Submit' value='Submit' />
</fieldset>
Database.php
<?php
// This part sets up the connection to the
// database (so you don't need to reopen the connection
// again on the same page).
$conn=odbc_connect("employee","","") or die (odbc_errormsg());
if (!$conn )
{
exit
("Error connecting to database: ".$conn);
}
// Then you need to make sure the database you want
// is selected.
$sql = "SELECT * FROM empTable";
$rs=odbc_exec($conn,$sql);
?>
ここから続行するにはどうすればよいですか?ありがとうございました!私はMSAccess2003でのみすべてを認証できることに注意してください。