real_escape_string($_POST['rating']); $_SESSION['rating'] = $rating; $sql = "INSERT INTO rating (rating)" . "Values ($rating)"; if($mysqli->query($sql) === true){ $_SESSION['message'] = "Dodanie oceny się powiodło!"; header("location:post.php"); } else{ $_SESSION['message'] = "Nie udało się dodać ooceny!"; } } ?>