<?php
include '../database.php';
$price = $_POST['price'];
$description = $_POST['description'];
$title = $_POST['title'];
$verification = strlen($title);
if($verification > 0){
mysqli_query($connection, "INSERT INTO `sh` (`id`, `title`, `price`, `description`) VALUES (NULL, '$title', '$price', '$description')");
}
header('location: ../');
?>