1

mySQL データベースから php ページをコーディングしています。テーブルは、Web サイトで表示しようとしているすべての列で完全に構築されていますが、select ステートメントがエラーを返しています。入力した最初の列を認識しません。「姓」検索を取り出し、「名」で始まるだけで同じ問題が発生しました。このテーブルの別の使用法では、最初の列に入力するのにも問題があります。私は自分のステートメントを間違って形成していますか?

私はこのコードで一般的な関数phpを使用しています:

function connectDatabase() {
    require('../DBtest.php');

    $host     = 'localhost';
    $userid   = '7an7';
    $password = '7dl7';

    $db = mysql_perry_pconnect($host, $userid, $password);

    if (!$db) {
        print "<h1>Unable to Connect to MySQL</h1>";
        exit;
    }

    $dbname = '7phpmysql7';
    $dbtest = mysql_perry_select_db($dbname);

    if (!$dbtest) {
        print "<h1>Unable to Select the Database</h1>";
    }

    return $db;
}

function selectResults($statement) {

    $output      = "";
    $outputArray = array();

    $db = connectDatabase();

    if ($db) {
        $result = mysql_query($statement);

        if (!$result) {
            $output .= "ERROR";
            $output .= "<br /><font color=red>MySQL No: " . mysql_errno();
            $output .= "<br />MySQL Error: " . mysql_error();
            $output .= "<br />SQL Statement: " . $statement;
            $output .= "<br />MySQL Affected Rows: " . mysql_affected_rows() . "</font><br />";

            array_push($outputArray, $output);
        } else {

            $numresults = mysql_num_rows($result);

            array_push($outputArray, $numresults);

            for ($i = 0; $i < $numresults; $i++) {
                $row = mysql_fetch_array($result);

                array_push($outputArray, $row);
            }
        }
    } else {

        array_push($outputArray, 'ERROR-No DB Connection');
    }

    return $outputArray;
}

次に、共通機能を利用しているローカル コードは次のとおりです。

<?php
include "king_common_functions.php";

viewGuestbook();

//****************************************************************
//Display Admin Guestbook Data (All Submissions)
//****************************************************************

function viewGuestbook() {
    $outputDisplay = "";
    $myrowcount    = 0;

    $statement = "SELECT lastname, firstname, contact_type, contact_info, city, comments, date_added";
    $statement .= "FROM u1585_Guestbook ";
    $statement .= "ORDER BY lastname ";

    $sqlResults = selectResults($statement);

    $error_or_rows = $sqlResults[0];


    if (substr($error_or_rows, 0, 5) == 'ERROR') {
        print "<br />Error on DB";
        print $error_or_rows;
    } else {
        $arraySize = $error_or_rows;

        for ($i = 1; $i <= $error_or_rows; $i++) {
            $lastname     = $sqlResults[$i]['lastname'];
            $firstname    = $sqlResults[$i]['firstname'];
            $contact_type = $sqlResults[$i]['contact_type'];
            $contact_info = $sqlResults[$i]['contact_info'];
            $city         = $sqlResults[$i]['city'];
            $comments     = $sqlResults[$i]['comments'];
            $date_added   = $sqlResults[$i]['date_added'];

            $outputDisplay = "<h3>View Guestbook:</h3>";
            $outputDisplay .= '<table border=1 style="color: black;">';
            $outputDisplay .= '<tr><th>Last Name</th><th>First Name</th><th>Contact Type</th><th>Contact Info</th>';
            $outputDisplay .= '<th>City</th><th>Comments</th><th>Date Added</th></tr>';

            $numresults = mysql_num_rows($sqlResults);

            for ($j = 0; $j < $numresults; $j++) {
                if (!($j % 2) == 0) {
                    $outputDisplay .= "<tr style=\"background-color: #F5DEB3;\">";
                } else {
                    $outputDisplay .= "<tr style=\"background-color: white;\">";
                }

                $myrowcount++;

                $outputDisplay .= "<td>" . $lastname . "</td>";
                $outputDisplay .= "<td>" . $firstname . "</td>";
                $outputDisplay .= "<td>" . $contact_type . "</td>";
                $outputDisplay .= "<td>" . $contact_info . "</td>";
                $outputDisplay .= "<td>" . $city . "</td>";
                $outputDisplay .= "<td>" . $comments . "</td>";
                $outputDisplay .= "<td>" . $date_added . "</td>";
                $outputDisplay .= "</tr>";
            }
        }
    }

    $outputDisplay .= "</table>";
    $outputDisplay .= "<br /><br /><b>Number of Rows in Results: $myrowcount </b><br /><br />";
    print $outputDisplay;
}

テーブル構造は次のとおりです。

CREATE TABLE u1585_Guestbook (
    guest_id int(11) NOT NULL AUTO_INCREMENT,
    lastname varchar(40) NOT NULL,
    firstname varchar(30) NOT NULL,
    contact_type varchar(30) NOT NULL,
    contact_info varchar(40) NOT NULL,
    city varchar(40) NOT NULL,
    comments varchar(200) NOT NULL,
    date_added date NOT NULL,
    PRIMARY KEY (guest_id)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
4

1 に答える 1

1

コードを見てください。クエリに問題がある場合はecho、画面に表示されます。あなたの場合(コードを見るだけで)、渡すクエリ($statement)は次のようになります。

SELECT lastname, firstname, contact_type, contact_info, city, comments, date_addedFROM u1585_Guestbook ORDER BY lastname

PHP では、このような間違いを避けるために、複数行にわたって文字列を定義できます。そのようです:

<?php
.
.
.
$statement = "SELECT lastname, firstname, contact_type, contact_info, city, comments, date_added
    FROM u1585_Guestbook 
    ORDER BY lastname ";

アップデート:

以下のコメントに応えて、PDO を使用してクエリを設定することをお勧めします。

//connect to DB
$db = new PDO("mysql:host=$host;dbname=$dbname", $user, $pass);

// prepare your statement
$query = $db->prepare("INSERT INTO u1585_guestbook(lastname, firstname, contact_type, contact_info, city, comments, date_added) VALUES (?, ?, ?, ?, ?, ?, ?)");
$data = array($mylastname, $myfirstname, $mycontact_type, $mycontactinfo, $mycity, $mycomments, $mydate);

// execute your statement
$query->execute($data);

PDO の詳細については、この概要をご覧ください。それはかなり素晴らしいです。

于 2012-08-21T21:40:26.057 に答える