Related Code(index.php):
<?php
include 'inc/header.php';
include "config.php";
include "Database.php";
?>
<?php
$db = new Database();
$query = "SELECT * FROM tbl_user";
$read = $db->select($query);
?>
<?php
if(isset($_GET['msg'])){
echo "<span style='color:green'>".$_GET['msg']."</span>";
}
?>
<table class="tblone">
<tr>
<th width="10%">Serial</th>
<th width="35%">Name</th>
<th width="25%">Email</th>
<th width="15%">Skill</th>
<th width="15%">Action</th>
</tr>
<?php if($read){?>
<?php
$i=1;
while($row = $read->fetch_assoc()){
?>
<tr>
<td><?php echo $i++ ?></td>
<td><?php echo $row['name']; ?></td>
<td><?php echo $row['email']; ?></td>
<td><?php echo $row['skill']; ?></td>
<td><a href="update.php?id=<?php echo urlencode($row['id']); ?>">
Edit</a></td>
</tr>
<?php } ?>
<?php } else { ?>
<p>Data is not available !!</p>
<?php } ?>
</table>
<a href="create.php">Create</a>
<?php include 'inc/footer.php'; ?>
How to practice tutorials…
- Make a team with your friends (Member should be 4/5).
- Start to practice one tutorial series along with them.
- Don’t try to collect source code. Type the code while watching the tutorial.
- If you face any problem, discuss with team members to solve quickly.