Va voir sur le site du zero
Sinon, voila ce que je peux te donner:
Attention: ce code n'est pas "parfait" et peu être amélioré, j'en suis sur :p
la table SQL:
Sinon, voila ce que je peux te donner:
Attention: ce code n'est pas "parfait" et peu être amélioré, j'en suis sur :p
la table SQL:
Code PHP :
<?php
CREATE TABLE `membres` (
`id` int(11) NOT NULL auto_increment,
`pseudo` varchar(40) collate latin1_general_ci NOT NULL,
`mot_passe` varchar(255) collate latin1_general_ci NOT NULL,
`confirmation` smallint(1) NOT NULL default '0',
`email` varchar(255) collate latin1_general_ci NOT NULL,
`race` set('elfe','nain','humain') collate latin1_general_ci NOT NULL,
`autorisation` set('1','2','3','4') collate latin1_general_ci NOT NULL default '2',
`gald` bigint(8) unsigned NOT NULL,
`mana` bigint(5) unsigned NOT NULL,
`tours` smallint(200) unsigned NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=5 ;
Connection a la BDD (fichier config.inc.php):
Code PHP :
<?php
$host = 'localhost';
$username = 'ton username';
$password = 'ton pass';
$bdd_name = 'nom de ta BDD';
?>