no way)
What do you mean
You have to pay for hosting anyway!!!
Then pay hosting)
try 000webhost
@atrapadaayudaaaaaa You can host in AWS for 1 year….
I have problem with my code so I am junior
The first problem is that all buttons work except update
The second user can only send one message thought there was a space in sqlββ
Company -Martvalley Onkine Private Limited
Exp -1-3 years
5 days working
location – Noida
DM for more details..
Job Location : Mogappair West, Chennai
Interested candidates can share their resumes to hr@kokatech.in /ramya@kokatech.in/ WhatsApp 9150661834
Thank you
Ramya J II Sr HR
www.kokatech.in
20 million users worldwide make money on our site
married?)

Use html table for it
Now what happening?
Check it has record or not if not then display no record found message
Can I see a shot of your form, table and php code
include (“config.php”);
$result=mysqli_query($mysqli,”SELECT* from register ORDER by id DESC”);
?>
<!DOCTYPE html>
<html>
<head>
<title>Register</title>
</head>
<body>
<form action=”function.php” method=”POST”>
<table>
<tr>
<td>Name :</td>
<td><input type=”text” name=”username” required></td>
</tr>
<tr>
<td>Password :</td>
<td><input type=”password” name=”password” required></td>
</tr>
<tr>
<td>Gender :</td>
<td>
<input type=”radio” name=”gender” value=”m” required>Male
<input type=”radio” name=”gender” value=”f” required>Female
</td>
</tr>
<tr>
<td>Email :</td>
<td><input type=”email” name=”email” required></td>
</tr>
<tr>
<td>Phone no :</td>
<td>
<select name=”phoneCode” required>
<option selected hidden value=””>Select Code</option>
<option value=”91+”>91+</option>
<option value=”91+”>91+</option>
<option value=”01+”>01+</option>
</select>
<input type=”phone” name=”phone” required>
</td>
</tr>
<tr>
<td><input type=”submit” value=”Submit” name=”submit”></td>
</tr>
</table>
</form>
<table border=”2″>
<tr>
<th>Name</th>
<th>Gender</th>
<th>Email</th>
<th>Mobile</th>
</tr>
<?php
while ($res = mysqli_fetch_array($result)){
echo “<tr>”;
echo “<td>”.$res[‘username’].”</td>”;
echo “<td>”.$res[‘gender’].”</td>”;
echo “<td>”.$res[’email’].”</td>”;
echo “<td>”.$res[‘phone’].”</>”;
echo “<tr>”;
}
?>
</table>
</body>
</html>
include(“config.php”);
if(isset($_POST[‘submit’]))
{
$username = $_POST[‘username’];
$password = $_POST[‘password’];
$gender = $_POST[‘gender’];
$email = $_POST[’email’];
$phoneCode = $_POST[‘phoneCode’];
$phone = $_POST[‘phone’];
$result=mysqli_query($mysqli,”INSERT INTO register values(‘$username’, ‘$password’, ‘$gender’, ‘$email’, ‘$phoneCode’,’$phone’,”)”);
if($result)
{
header(“Location:insert.php”);
}
else{
echo “failed”;
}
}
?>