0

2 つの異なるが関連するテーブルがあり、取得してフォームに表示される情報を編集/更新できるようにしたいと考えています。平易な英語では、私が達成しようとしていることは次のとおりです。

SELECT colum_1, colum_2, colum_3 FROM table requests WHERE request_id = {$id}

しかし同時に、私は次のことを望んでいます。

SELECT colum_A, colum_B, colum_C FROM table serialNumbers WHERE request_id = {$id}

これを一度に行う正しい/最良の方法は何ですか?

質問の更新: (1)my_request.php (テーブル要求の詳細をリストする) と (2) configuration.php (両方のテーブルを編集/更新するために使用するフォーム - 主にシリアル番号) の 2 つのファイルがあります。テーブル)。上記の指示を適用できるように、my_request.php から configuration.php に ID を渡すにはどうすればよいですか

my_request.php には、次のコードがあります。ログインしたユーザーが作成したすべてのリクエストを確認できます。

while ($row = mysql_fetch_assoc($results)) {

                        $orderdate = strtotime($row['sl_date']);
                        $fdate = strftime("%d/%m/%Y", $orderdate);
                        echo '<tr>';
                        echo '<td class="txtLeft">' . $row['request_date'] . '</td>';
                        echo '<td class="txtLeft">' . $row['client_name'] . '</td>';
                        echo '<td class="txtCenter">' . $row['client_country'] . '</td>';
                        echo '<td class="txtCenter">' . $row['opportunity_number'] . '</td>';
                        echo '<td class="txtCenter">' . $row['machine_quantity'] . '</td>';
                        echo '<td class="txtCenter">' . $row['severity'] . '</td>';
                        echo '<td class="txtCenter">' . $row['request_status'];
                        echo '</td>';
                         echo '<td class="txtCenter" id="task1">
                            <a href="configuraion.php?request_id=' . $row['request_id'] . '">
                            <img src="images/edit.png" width="16" height="16" title="edit sale" style="margin:1px;"/>
                            </a> 

                            <a href="' . $row['sales_connect'] . '" onClick="return confirm(\''. $LANG['alert_sale_del'] .'\');">
                            <img src="images/s.png" width="16" height="16" title="Sales Connect" style="margin:1px;"/>
                            </a>
                            </td>'; 
                        echo '</tr>';

どのIDから情報を取得するかを理解するために、configuration.phpで何をする必要がありますか? configuration.php については、基本的に、データを表示したい html フォームがあります。

4

1 に答える 1