Sep 26, 2023

PHP_16 (Tables)


<table>       To start make table
<tr>            Table Row
<th>            Table Header
<td>            Table 
-----
<th colspan="2">    To make header merge in 2 Coloumn - colspan(column span).
<td rowspan="2">    To make rowspan (Row Span)    

----------------------------------------------------------------------------------------


<table>
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>
  <tr>
    <td>February</td>
    <td>$80</td>
  </tr>
</table>

---------------------------------------------------------
To make border and merge 2 coloumn,



- class="table table-bordered"            to make border
- class="table text-centered"                to make center text
- colspan="2"                                    to merge two coloumn

<table class="table table-bordered text-center">
<tr>
    <th>No</th>
    <th>Username</th>
    <th>Passsword</th>
    <th colspan="2">Menu</th>
</tr>
<tr>
    <td>1</td>
    <td>mz</td>
    <td>mzshb</td>
    <td>edit</td>
    <td>delete</td>
</tr>
</table>

----------------------------------------------------------


<table style="width:50%" class="table table-bordered text-center">
<tr>
    <th>No</th>
    <th>Username</th>
    <th>Passsword</th>
    <th colspan="2">Menu</th>
</tr>
<tr>
    <td>1</td>
    <td>mz</td>
    <td>mzshb</td>
    <td>ediit</td>
    <td>delete</td>
</tr>
</table>


----------------------------------