16-08-2006, 12:14 PM
(Modification du message : 31-01-2009, 07:14 PM par Sephi-Chan.)
conf.php3:
Code PHP :
<?
$sql_serveur = "localhost"; //Serveur de la BDD
$sql_login = "login"; //Login BDD
$sql_pass = "pass"; //Pass BDD
$sql_bdd = "jeu"; //Nom de la BDD - en general le login sur les serveurs distants
?>
les tables c'est pas compliqué
Code PHP :
<?php
CREATE TABLE `membre` (
`id` smallint(10) NOT NULL auto_increment,
`pseudo` varchar(50) NOT NULL default '',
`avatar_joueur` varchar(50) NOT NULL default '',
`posx` smallint(3) NOT NULL default '0',
`posy` smallint(3) NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 ;
--
-- Contenu de la table `membre`
--
INSERT INTO `membre` VALUES (1, 'test', 'image_1', '10', '10');
INSERT INTO `membre` VALUES (2, 'machin', 'mage_2', '12', '10');
INSERT INTO `membre` VALUES (3, 'truc', 'image_3', '15', '22');
CREATE TABLE `batiment` (
`id` smallint(10) NOT NULL auto_increment,
`batiment` varchar(50) NOT NULL default '',
`posx` smallint(3) NOT NULL default '0',
`posy` smallint(3) NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 ;
--
-- Contenu de la table `batiment`
--
INSERT INTO `batiment` VALUES (1, 'maison', '22', '12');
INSERT INTO `batiment` VALUES (2, 'magasin', '17', '10');
INSERT INTO `batiment` VALUES (3, 'parking', '13', '23');