0

リマインダーを追加および表示するための PHP プログラムを作成しました。追加ページは機能しますが、適切に表示するのに問題があります。実際のデータのみを取得するには、これをどのようにコーディングすればよいですか? また、どうすればこれを HTML テーブルに入れることができますか? (つまり、名前、説明、および日付の列。行は取得されたデータです)

ありがとう

ブラウザでファイルを開くと、次の出力が得られます。

配列 ( [reminderID] => 14 [reminderName] => Test [reminderDescript] => Test_Descript [reminderDate] => 2012 05 7 )

コード:

<?php include 'header.php'; ?>
<?php include 'database.php'; ?>
<div id="content">
  <h1>Reminder List</h1>
        <table align ="center">
    <thead>
        <tr>
            <td>Name</td>
            <td>Description</td>
            <td>Date</td>
        </tr>
    </thead>
    <?php 
        $query = 'SELECT * FROM reminder_event';
        $result = mysql_query($query);
            while($row = mysql_fetch_assoc($result)) {
                print_r($row);
            }
        ?>
  </table>
  <p><a href='reminder_add.php'>Add Reminder</a></p>
</div>
<?php include 'footer.php'; ?>
4

3 に答える 3

1
<?php include 'header.php'; ?>
<?php include 'database.php'; ?>
<div id="content">
  <h1>Reminder List</h1>
    <table>
        <thead><tr><td>id</td><td>name</td><td>description</td><td>date</td></tr></thead>
        <tbody>
        <?php 
            $query = 'SELECT * FROM reminder_event';
            $result = mysql_query($query);
            while($row = mysql_fetch_assoc($result)) { ?>
            <tr>
                <td><?php echo $row['reminderID']; ?></td>
                <td><?php echo $row['reminderName']; ?></td>
                <td><?php echo $row['reminderDescript']; ?></td>
                <td><?php echo $row['reminderDate']; ?></td>
            </tr>
           <?php } ?>
        </tbody>
    </table>
  <p><a href='reminder_add.php'>Add Reminder</a></p>
</div>
<?php include 'footer.php'; ?>
于 2012-05-05T03:37:36.527 に答える