🤘
{
$connection = mysqli_connect('localhost','root','','greatness');
$f_name = $_POST['first_name'];
$l_name = $_POST['last_name'];
$email = $_POST['email'];
$subject = $_POST['subject'];
$comment = $_POST['comment'];
$sql = "insert into contact(f_name,l_name,email,subject,comment) values('{$f_name}','{$l_name}','{$email}','{$subject}','{$comment}',)";
$resulut = mysqli_query($connection, $sql);
print_r($_POST);
}