コミュニティの皆様、データベース アプリケーションを作成してからしばらく経ちましたが、念のために簡単な質問があります。
ここにある PHP コードは安全に使用できますか? PHP 5.3.8 を使用した基本的な DA インストールがあるため、マジック クォートを無効にする必要があります。
ご挨拶、
<?php
$id = ( mysql_real_escape_string( stripslashes ($_POST['id'])));
$naam = ( mysql_real_escape_string( stripslashes ($_POST['naam'])));
$bericht = ( mysql_real_escape_string ( stripslashes ($_POST['bericht'])));
if ($id and $naam and $bericht) {
$databsestring = "<div class=\"reactie\"><h3>".$naam." op ".date ("F j, Y").":</h3>" . $bericht . "</div>";
if ($db_found) {
$SQL = "UPDATE xxxxx_comments SET comments = CONCAT (comments,'".$databsestring."') WHERE id='".$id."'";
$result = mysql_query($SQL);
mysql_close($db_handle);
}
?>