melder/ajax/ajax_comment_push.php
Walter Hupfeld 34af6b6f75 fixes
2024-03-11 12:55:17 +01:00

21 lines
597 B
PHP

<?php
require ("../config.php");
if ($boolComment){
$strUsername = htmlentities(trim($_POST['comment_username']));
$strUsername = addslashes($strUsername);
$strComment = htmlentities(trim($_POST['comment']));
$strComment = addslashes($strComment);
$id=(int)$_POST['loc_id'];
$stmt = $db->prepare("INSERT INTO comment (loc_id,username,comment)
VALUES (:loc_id,:username,:comment)");
$stmt->bindValue(':username', $strUsername);
$stmt->bindValue(':comment', $strComment);
$stmt->bindValue(':loc_id', $id);
$stmt->execute();
echo "ok";
}
?>