groups

name language licence
PHP/MYSQL : utilisation orientée objet de mysqli Other Other
PHP/MYSQL : recuperer un date en base et la formater grace à date PHP Other
PHP/MYSQL : usage procedurale de mysqli PHP Other
PHP/MYSQL : Notes mysqli PHP Other
PHP/MYSQL : Chaines de caractères echapper avant insertion en base PHP Other
PHP/MYSQL/SQL : inserer donnees en base depuis csv PHP Other
PHP/MYSQL : Chaines de caractères echapper avant insertion en base PHP Other
PHP/MYSQL : Notes mysqli PHP Other

< 1 2 >



language: PHP
licence: Other

PHP/MYSQL : usage procedurale de mysqli

options: view full snippetsend to code collector
$host = "";
$usr = "";
$psswd = "";
$db = "";
$char = "UTF-8"

/* hot to connect to the database */
$link = mysqli_connect($host, $usr, $pass);

/* how to set the default charset to use for this connection */
mysqli_set_charset($link, $char);

/* how to select the database */
mysqli_select_db($link, $db);

	
(Continues...)