使用MySQL 擴充功能的完美程式碼範例
問題:
問題:在尋求一個用於安全且無錯誤的PHP 資料庫查詢的社群學習資源,這個假設的問題提出了產生完美程式碼的任務使用MySQL擴展的範例。目標是解決 SQL 注入、錯誤報告和 XSS 注入等常見問題。
解決方案:<?php header('Content-type: text/html; charset=utf-8'); error_reporting(E_ALL | E_STRICT); ini_set('display_errors', 1); $config = array( 'host' => '127.0.0.1', 'user' => 'my_user', 'pass' => 'my_pass', 'db' => 'my_database' ); $connection = @mysql_connect($config['host'], $config['user'], $config['pass']); if (!$connection) { trigger_error('Unable to connect to database: ' . mysql_error(), E_USER_ERROR); } if (!mysql_select_db($config['db'])) { trigger_error('Unable to select db: ' . mysql_error(), E_USER_ERROR); } if (!mysql_set_charset('utf8')) { trigger_error('Unable to set charset for db connection: ' . mysql_error(), E_USER_ERROR); } $result = mysql_query( 'UPDATE tablename SET name = "' . mysql_real_escape_string($_POST['name']) . '" WHERE id = "' . mysql_real_escape_string($_POST['id']) . '"' ); if ($result) { echo htmlentities($_POST['name'], ENT_COMPAT, 'utf-8') . ' updated.'; } else { trigger_error('Unable to update db: ' . mysql_error(), E_USER_ERROR); }
以上是如何建立安全且無錯誤的 PHP MySQL 程式碼範例?的詳細內容。更多資訊請關注PHP中文網其他相關文章!