Mysql
 sql >> Baza danych >  >> RDS >> Mysql

Odniesienie:Czym jest doskonały przykładowy kod przy użyciu rozszerzenia MySQL?

Moje uderzenie w to. Staram się, aby było to tak proste, jak to tylko możliwe, jednocześnie zachowując pewne udogodnienia w świecie rzeczywistym.

Obsługuje Unicode i używa luźnego porównania dla czytelności. Bądź miły;-)

<?php

header('Content-type: text/html; charset=utf-8');
error_reporting(E_ALL | E_STRICT);
ini_set('display_errors', 1);
// display_errors can be changed to 0 in production mode to
// suppress PHP's error messages

/*
Can be used for testing
$_POST['id'] = 1;
$_POST['name'] = 'Markus';
*/

$config = array(
    'host' => '127.0.0.1', 
    'user' => 'my_user', 
    'pass' => 'my_pass', 
    'db' => 'my_database'
);

# Connect and disable mysql error output
$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);
}


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Bitwy kodowania znaków UTF-8 json_encode()

  2. Wdrożenie w wielu chmurach dla replikacji MySQL

  3. Przygotowana instrukcja PHP PDO -- zapytanie MySQL LIKE

  4. Wiosna, hibernacja, leniwe ładowanie Blob

  5. Czy możesz dodać oświadczenie if w ORDER BY?