• We just launched and are currently in beta. Join us as we build and grow the community.

Advertise Here

Advertise Here

Advertise Here

Joining Table using Left Join PHP/MySQL

Userless

Immersive Technology Specialist
U Rep
0
0
0
Rep
0
U Vouches
0
0
0
Vouches
0
Posts
121
Likes
151
Bits
2 MONTHS
2 2 MONTHS OF SERVICE
LEVEL 1 100 XP
This tutorial will show you how to join 2 tables using left join in PHP/MySQLi. Joining tables is used to make 2 or more tables work as 1. In this tutorial, I will give you an idea how left join works and how to join to tables.

Creating our Database

First, we're going to create a database that contains the user data.
1. Open phpMyAdmin.
2. Click databases, create a database and name it as "join_tutorial".
3. After creating a database, click the SQL and paste the below code. See image below for detailed instruction.

  1. CREATE

    TABLE

    `user`

    (
  2. `userid`

    INT

    (

    11

    )

    NOT

    NULL

    AUTO_INCREMENT

    ,
  3. `username`

    VARCHAR

    (

    30

    )

    NOT

    NULL

    ,
  4. `password`

    VARCHAR

    (

    30

    )

    NOT

    NULL

    ,
  5. PRIMARY

    KEY

    (

    `userid`

    )
  6. )

    ENGINE=

    InnoDB DEFAULT

    CHARSET=

    latin1;

  7. CREATE

    TABLE

    `user_details`

    (
  8. `userid`

    INT

    (

    11

    )

    NOT

    NULL

    AUTO_INCREMENT

    ,
  9. `firstname`

    VARCHAR

    (

    30

    )

    NOT

    NULL

    ,
  10. `lastname`

    VARCHAR

    (

    30

    )

    NOT

    NULL

    ,
  11. PRIMARY

    KEY

    (

    `userid`

    )
  12. )

    ENGINE=

    InnoDB DEFAULT

    CHARSET=

    latin1;

join.png


Notice that we have created two tables in our database namely "user" and "user_details" both having a common column named "userid".

Inserting Data into our Tables

Next, we insert data into our tables. Make sure that the "userid" in one table have the same value in other table.
1. Click our database "join_tutorial".
2. Click SQL and paste the below code.

  1. INSERT

    INTO

    `user`

    (

    `username`

    ,

    `password`

    )

    VALUES
  2. (

    'user1'

    ,

    'user1'

    )

    ,
  3. (

    'user2'

    ,

    'user2'

    )

    ;

  4. INSERT

    INTO

    `user_details`

    (

    `firstname`

    ,

    `lastname`

    )

    VALUES
  5. (

    'neovic'

    ,

    'devierte'

    )

    ,
  6. (

    'lee'

    ,

    'ann'

    )

    ;

Creating our Connection

Next step is to create a database connection and save it as "conn.php". This file will serve as our bridge between our page and our database. To create the file, open your HTML code editor and paste the code below after the tag.

  1. <?php
  2. $conn

    =

    mysqli_connect

    (

    "localhost"

    ,

    "root"

    ,

    ""

    ,

    "join_tutorial"

    )

    ;

  3. // Check connection
  4. if

    (

    mysqli_connect_errno

    (

    )

    )
  5. {
  6. echo

    "Failed to connect to MySQL: "

    .

    mysqli_connect_error

    (

    )

    ;
  7. }
  8. ?>

Creating our Output Table

Lastly, we create a table that will output our query using LEFT JOIN.
To create the table, open your HTML code editor and paste the code below after the tag.

  1. <!DOCTYPE html>
  2. <html

    >
  3. <head

    >
  4. <title

    >

    Joining Table using Left Join PHP,MySQLi</

    title

    >
  5. </

    head

    >
  6. <body

    >
  7. <table

    border

    =

    "1"

    >
  8. <thead

    >
  9. <th

    >

    Username</

    th

    >
  10. <th

    >

    Password</

    th

    >
  11. <th

    >

    Firstname</

    th

    >
  12. <th

    >

    Lastname</

    th

    >
  13. </

    thead

    >
  14. <tbody

    >
  15. <?php
  16. include(

    'conn.php'

    )

    ;
  17. $query=

    mysqli_query(

    $conn,"select * from `user` left join user_details on user_details.userid=user.userid"

    )

    ;
  18. while(

    $row=

    mysqli_fetch_array(

    $query)

    )

    {
  19. ?>
  20. <tr

    >
  21. <td

    ><?php echo $row[

    'username'

    ]

    ; ?></

    td

    >
  22. <td

    ><?php echo $row[

    'password'

    ]

    ; ?></

    td

    >
  23. <td

    ><?php echo $row[

    'firstname'

    ]

    ; ?></

    td

    >
  24. <td

    ><?php echo $row[

    'lastname'

    ]

    ; ?></

    td

    >
  25. </

    tr

    >
  26. <?php
  27. }
  28. ?>

  29. </

    tbody

    >
  30. </

    table

    >
  31. </

    body

    >
  32. </

    html

    >

Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. After downloading it, you will need a program like Winzip to decompress it.

Virus note: All files are scanned once-a-day by SourceCodester.com for viruses, but new viruses come out every day, so no prevention program can catch 100% of them.

FOR YOUR OWN SAFETY, PLEASE:

1. Re-scan downloaded files using your personal virus checker before using it.

2. NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.


Download
You must upgrade your account or reply in the thread to view the hidden content.
 

452,496

342,837

342,845

Top