1

Bluemix の DashDB サービスで PHP を使用してログイン フォームを作成しようとしています。私のコードは、ConexionDB.php、checklogin.php、login_success.php、logout.php、main_login.php の 5 つの部分で構成されています。

DashDB データベース:

CREATE TABLE MEMBERS (
  ID         INT NOT NULL,
  USERNAME     VARCHAR(65) NOT NULL DEFAULT,
  PASSWORD       VARCHAR(65) NOT NULL DEFAULT,
  PRIMARY KEY (ID)
 );

ConexionDB.php

<?php
// Parse VCAP
if( getenv("VCAP_SERVICES") ) {
    $json = getenv("VCAP_SERVICES");
}
// No DB credentials
else {
    throw new Exception("No Database Information Available.", 1);
}

// Decode JSON and gather DB Info
$services_json = json_decode($json,true);
$bludb_config = $services_json["dashDB"][0]["credentials"];

// Create DB connect string
$conn_string = "DRIVER={IBM DB2 ODBC DRIVER};DATABASE=".
   $bludb_config["db"].
   ";HOSTNAME=".
   $bludb_config["host"].
   ";PORT=".
   $bludb_config["port"].
   ";PROTOCOL=TCPIP;UID=".
   $bludb_config["username"].
   ";PWD=".
   $bludb_config["password"].
   ";";

?>

main_login.php

<!DOCTYPE HTML>

<html>
    <head>
        <title>Application Name</title>
    </head>
    <body>

<table width="300" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#CCCCCC">
<tr>
<form name="form1" method="post" action="checklogin.php">
<td>
<table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#FFFFFF">
<tr>
<td colspan="3"><strong>Member Login </strong></td>
</tr>
<tr>
<td width="78">Username</td>
<td width="6">:</td>
<td width="294"><input name="myusername" type="text" id="myusername"></td>
</tr>
<tr>
<td>Password</td>
<td>:</td>
<td><input name="mypassword" type="text" id="mypassword"></td>
</tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td><input type="submit" name="Submit" value="Login"></td>
</tr>
</table>
</td>
</form>
</tr>
</table>

    </body>
</html>

checklogin.php

<?php

//Include DB conexion
require('includes/ConexionDB.php');

$tbl_name="MEMBERS"; // Table name

// username and password sent from form
$myusername=$_POST['myusername'];
$mypassword=$_POST['mypassword'];

// Connect to BLUDB
$conn = db2_connect($conn_string, '', '');
if ($conn) {

    // Prepare, execute SQL and iterate through resultset
    $sql="SELECT * FROM $tbl_name WHERE username='$myusername' and password='$mypassword'";

    $stmt = db2_prepare($conn, $sql);
    $result = db2_execute($stmt);

//$result=db2_query($sql);

?>

<?php

// DB2_num_row is counting table row
$count=db2_num_rows($result);

// If result matched $myusername and $mypassword, table row must be 1 row

if($count==1){

// Register $myusername, $mypassword and redirect to file "login_success.php"

session_register("myusername");
session_register("mypassword");
header("location:login_success.php");
}
else {
echo "Wrong Username or Password";
}

?>


<?php
    db2_close($conn);
}
?>

login_success

// Check if session is not registered, redirect back to main page.
// Put this code in first line of web page.
<?php
session_start();
if(!session_is_registered(myusername)){
header("location:main_login.php");
}
?>

<html>
<body>
Login Successful
</body>
</html>

ログアウト

// Put this code in first line of web page.
<?php
session_start();
session_destroy();
?>
4

3 に答える 3

1

db2 クライアントを含む代替の Cloud Foundry ビルド パックを使用する必要があります。

まだ行っていない場合は、Cloud Foundry コマンド ライン ツールと PHP アプリケーションの開始コードをダウンロードしてください (Bluemix UI のアプリケーション ウィンドウの右側にある [コーディングの開始] リンクから両方をダウンロードできます)。

「cf ログイン」を実行します。

次のコマンドを実行して、db2 を使用した php ビルドパックでアプリケーションをプッシュします。

cf push <app-name> -b https://github.com/ibmdb/db2heroku-buildpack-php

アプリケーションを再起動したら、もう一度テストします。

詳細については、次を参照してください。

http://bit.ly/1UROtMO

于 2015-09-15T02:22:52.257 に答える
1

コードとビルドにいくつかの問題があります:)

1) 変更

$tbl_name="メンバー";

$tbl_name="SCHEMA.MEMBERS";

あなたの場合、「SCHEMA」は「DASH103758」です(data_henrikが示唆するように)


2)db2clientを使用したい場合は、カスタムビルドパックを使用してプッシュする必要があります( adasilva の提案による。CF コマンドラインは次のとおりです。

cf login -u yourusername -o yourorganization -s yourspace

cf push YOUAPPNAME -b https://github.com/ibmdb/db2heroku-buildpack-php -p YOURAPP_LOCAL_PATH


3) 関数 db2_num_rows( .. ); ブール値を受け入れません。ブール値である $result を渡しています。実際、db2_execute はブール値を返します ( http://php.net/manual/en/function.db2-execute.php )。

したがって、「checklogin.php」のクエリ文字列を変更することをお勧めします。

$sql="SELECT count(*) FROM $tbl_name WHERE username='$myusername' and password='$mypassword'";

そして、このようなチェック:

// DB2_num_row はテーブル行をカウントしています
//$count=db2_num_rows($result);

// 結果が $myusername と $mypassword に一致した場合、テーブルの行は 1 行でなければなりません

$count = -1;
if ($result) {
  $rowcount = db2_fetch_array($stmt);
  $count = $rowcount[0];
}

if($count==1){
.... ...


私はそれが役に立つことを願っています


よろしく

于 2015-09-15T10:13:02.900 に答える
0

エラーを説明してください次を使用してログを取得できます

cf logs [アプリ名] (最新のもののダンプを取得するには --recent を追加)

于 2015-09-14T06:36:21.770 に答える