remove unnecessary escape
This commit is contained in:
@@ -354,7 +354,7 @@ if (!empty($_GET["admin"])){
|
|||||||
while ($stmt->fetch())
|
while ($stmt->fetch())
|
||||||
{
|
{
|
||||||
if (!empty($_GET['deletechatmsg'])&&!empty($_POST['deletechatmsg'])){
|
if (!empty($_GET['deletechatmsg'])&&!empty($_POST['deletechatmsg'])){
|
||||||
if(htmlspecialchars($_POST['deletechatmsg']) == "*"){
|
if($_POST['deletechatmsg'] == "*"){
|
||||||
$stmt5 = $mysqli->prepare("DELETE from Chat WHERE StreamID = ?;");
|
$stmt5 = $mysqli->prepare("DELETE from Chat WHERE StreamID = ?;");
|
||||||
$stmt5->bind_param('i', $idcko);
|
$stmt5->bind_param('i', $idcko);
|
||||||
$stmt5->execute();
|
$stmt5->execute();
|
||||||
|
Reference in New Issue
Block a user