bubble_chart StackLab

Activity Logs using HTML + PHP + MySQL

7 steps · pending Not started · person_outline Guest
arrow_back Back

Create the HTML Table

Create a normal HTML table:

code html
<table border="1">
The table headings correspond to the database fields:
code html
<thead>

    <tr>
        <th>ID</th>
        <th>User ID</th>
        <th>Email</th>
        <th>Action</th>
        <th>Status</th>
        <th>IP Address</th>
        <th>User Agent</th>
        <th>Date & Time</th>
    </tr>

</thead>

login Sign in to save your progress permanently. info Progress is saved in your browser session
format_list_numbered Step 4 of 7