완벽한 MySQL 확장 코드 샘플
이 질문의 목표는 MySQL 확장을 사용하여 간결하고 안전한 PHP 코드 샘플을 제공하는 것입니다. 코드는 다음을 포함하여 mysql_* 함수와 관련된 일반적인 오류를 방지해야 합니다.
코드 샘플:
<?php header('Content-type: text/html; charset=utf-8'); error_reporting(E_ALL | E_STRICT); ini_set('display_errors', 1); $config = [ '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 애플리케이션에는 PDO 확장을 사용하는 것이 좋습니다.
위 내용은 PHP에서 MySQLi 확장을 사용하여 MySQL 데이터베이스를 안전하게 업데이트하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!