You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
386 B
18 lines
386 B
<?php
|
|
session_start();
|
|
include("init.php");
|
|
|
|
$title = $_POST["title"];
|
|
$msg = $_POST["msg"];
|
|
$userid = $_SESSION["userid"];
|
|
|
|
$sql = "INSERT INTO nk_prispevky(id_nk_users,title,msg,created)
|
|
VALUES ('$userid','$title','$msg',now())";
|
|
|
|
if(mysqli_query($conn,$sql)){
|
|
echo "bylo zapsáno do knihy";
|
|
header("Location: /list.php");
|
|
} else{
|
|
echo "error:". mysqli_error($conn);
|
|
}
|
|
?>
|