彼此共享表数据

时间:2013-08-23 14:16:46

标签: php mysqli

你好,我是一名个人电脑和笔记本电脑维修人员,想建立一个离线数据库网站,我可以输入有关维修,客户和发票的详细信息。 我对sqli和php有非常基本的了解,因为我刚刚开始尝试学习它。

目前我的数据库中有3个表没有相互链接。我使用3个表单将数据提交到它们中。

客户

Id – name – surname – phone – address

修理

Id – name – surname – phone – address – unit – date – price

发票

Id - paidstatus – date paid - name – surname – phone – address- unit – date – price

由于我缺乏知识,我将数据显示在3个不同的页面上

Clients.php
Repairs.php
Invoices.php

这对我来说不是理想的解决方案,但这样做是因为我的知识非常基础。 例如,当我转到我的表单添加新修复时,我想从客户端表中提取信息并使用以下详细信息:name - surname - phone - address 然后在发票上我想调用其他表中的数据。

我认为我所追求的是数据库规范化,我有一些链接,但是我的专业知识是关于一些问题......

这是我从上面的表中提取数据的当前方式我使用了示例,因此代码可能不会反映在表的名称或行上。

  <?php
    //include database connection
    include 'db_connect.php';

    //query all records from the database
    $query = "select * from repair_jobs";

    //execute the query
    $result = $mysqli->query( $query );

    //get number of rows returned
    $num_results = $result->num_rows;

    //this will link us to our add.php to create new record
    if( $num_results > 0){ //it means there's already a database record

        //start table
        //creating our table heading
        echo " <table class='table_basic'>";
        echo "<thead><tr>";
            echo "<th>Job #</th>";
            echo "<th>Name Of Unit</th>";
            echo "<th>Client</th>";
            echo "<th>Estimated Value</th>";
        echo "</thead></tr><tbody><tr>";

        //loop to show each records
        while( $row = $result->fetch_assoc() ){
                //extract row
                //this will make $row['firstname'] to
                //just $firstname only
                extract($row);

                //creating new table row per record
                echo "<tr>";
                    echo "<td width='40px'><a href='rdetails.php?id={$id}'># {$id}</a></td>";
                    echo "<td>{$type}</td>";
                    echo "<td>{$notes}</td>";
    echo '<td align="center"><span class="badge badge-success">£';
    include('repairest.php');
    echo '</span></td>';

                                    echo "</td>";
                echo "";
        }

        echo "</tr></table>";//end table

    }else{
        //if database table is empty
        echo "No records found.";
    }

    //disconnect from database
    $result->free();
    $mysqli->close();

    ?>

使用规范化来提取信息有多么不同?任何人都可以发布一个简单教程的链接,也许可以下载教程源文件吗?

输入数据的形式有多么不同?


UPATE


关于迈阿密的回答

如何通过sql创建和连接表?我在评论字段中看到您在此问题下链接的页面上的示例,但是您能否告诉我如何将其加入

一对一和多个。

我是正确的想法,当我添加一个新修复时,我只会使用我的表单添加   单位 - 日期 - 价格 但如果没有创建客户端怎么办?或者客户是否必须先制作?

类似

客户端:旧(下拉)或新建(按钮)(可能需要一段代码,因此我可以进行一些研究)

然后我会输入维修数据。

可以在维修表和

中获得所需的所有信息后生成发票

2 个答案:

答案 0 :(得分:1)

<a href = "Page.php?View=Invoices">View Invoices</a>
<a href = "Page.php?View=Repairs">View Repairs</a>
<a href = "Page.php?View=Clients">View Clients</a>



<?php

  if (isset($_GET['View'])){

    //query all records from the database
    $query = "select * from ".$mysqli->real_escape_string($_GET['View']);

    //execute the query
    $result = $mysqli->query( $query );
  }

与此类似的方法可以创建奇迹并允许您将视图保留到一个页面。提供数据库设置或多或少相同,在个别情况下,您应根据$_GET['View'];的结果验证视图如果:

if ($_GET['View'] === "Test_1"){
  echo "Validate as Clients";
}elseif ($_GET['View'] === "Test_2"){
 echo "Validate as Repairs";
}elseif ($_GET['View'] === "Test_3"){
 echo "Validate as Invoices";
}

这是一个演示,您应该将此代码/调查结果调整到您自己的环境中

答案 1 :(得分:1)

我找不到包含源代码的内容,但here is one with some diagrams

关键是您不希望跨表重复数据,例如,您可以将表修改为如下所示:

<强>客户

Id – name – surname – phone – address

<强>修理

Id – client_id – unit – date – price

<强>发票

Id - repair_id - paidstatus – date paid
  1. 客户维修是一对多的关系,即1个客户可以进行多次维修,维修只能有1个客户。
  2. 发票的客户是通过维修的一对多关系,即1个客户可以有很多发票,发票只能有1个客户。
  3. 发票维修是一对一的,我认为这可能是一个问题,因为将多个维修绑定到一张发票​​可能是有意义的,但这是一个好的起点。
  4. 您始终可以从发票开始,并在修理发票时使用外键,而不是客户。这在业务逻辑方面有点交换,但我认为它会为您提供更大的灵活性:

    <强>客户

    Id – name – surname – phone – address
    

    <强>发票

    Id - client_id - paidstatus – date paid
    

    <强>修理

    Id – invoice_id – unit – date – price
    

    <强>更新

    好的,我们假设您决定跟上原始模型,而不是我提到的修改版本。您可以像现在一样创建每个表格,并且只需确保修复中的client_id与客户端中的id数据类型相同。

    然后你可以使用JOIN(Here is an SO answer that talks about SQL JOINs)运行单个查询来提取数据:

    # all the data
    SELECT * FROM invoices i JOIN repairs r ON i.repair_id = r.id JOIN clients c ON r.client_id = c.id
    
    # all the data for a specific customer
    SELECT * FROM invoices i JOIN repairs r ON i.repair_id = r.id WHERE r.client_id = <id goes here>
    
    # Also, if JOINs seem intimidating, you can reference multiple tables
    # and link them all together in a where clause
    SELECT * FROM invoices i, repairs r, clients c WHERE i.repair_id = r.id AND r.client_id = c.id
    
    # But you don't always need to get all of the data at once.  
    # It makes a lot of sense to grab only what you need and create links to detail pages.
    # So grab all of the unpaid invoices, and provide a link to a page that write that
    # shows the client and repair details associated with that invoice
    SELECT * FROM invoices i WHERE i.paidstatus='unpaid'
    

    现在您仍然需要先创建客户端,但是在创建修复表单中,您将有一个选择框,其中包含来自客户端表的id作为值的选项。

    //query all records from the database
    $query = "select id, name, surname from clients";
    
    //execute the query
    $result = $mysqli->query( $query );
    
    echo("<select name='client_id'>");
    while( $row = $result->fetch_assoc() ){
       echo("<option value='" . $row['id'] . "'>" . $row['name'] . " " . $row['surname'] . "</option>";
    }
    echo("</select>");
    

    是的,您可以在修复表单中添加新的客户端字段,这只会增加数据库插入的复杂性,因此由您决定。

    这里的基本思想是从表中获取您希望其他表引用的数据的id。这样,如果client_A更改了他们的电话号码,您只需将其更改一个位置。