$_POST をエスケープする必要があると誰かに言われましたが、これを実行すると、変数が空になります。私は何が欠けていますか?
<?php
$order = $_POST['order'];
$heading = $_POST['heading'];
$content = $_POST['content'];
?>
<?php
echo $order . $heading . $content;
$order = mysqli_real_escape_string($order);
$heading = mysqli_real_escape_string($heading);
$content = mysqli_real_escape_string($content);
?>
<?php
echo $order . $heading . $content;
$sql="INSERT INTO faq (`order`, `heading`, `content`)
VALUES ('$order','$heading','$content')";
if (!mysqli_query($con,$sql))
{
die('Error: ' . mysqli_error($con));
}
echo "1 record added";