06-09-2009, 08:51 PM
|
#3
|
|
Membro - Aspirante
Registrado em: Feb 2009
Localização: Nova Friburgo ( RJ )
Posts: 62
Agradecido 71 Vezes em 12 Posts
Achei Ruim:
Acharam ruim Vezes em Posts
|
<?php
$L2JBS_config["mysql_host"]="pvpfull.servegame.com"; // MySQL IP
$L2JBS_config["mysql_port"]=3306; // MySQP port
$L2JBS_config["mysql_db"]="l2jdb"; // l2jnet_db or your lineage 2 server database name
$L2JBS_config["mysql_login"]="root"; // MySQL Login name
$L2JBS_config["mysql_password"]="Minha senha aqui ;D"; // MySQL Password
error_reporting(0);
?>
<?php
$L2JBS_config["javascript_sort_method"]="bubble";
$link = mysql_connect($L2JBS_config['mysql_host'].":".$L2JBS_config['mysql_port'], $L2JBS_config['mysql_login'], $L2JBS_config['mysql_password']);
if (!$link)
die("Couldn't connect to MySQL");
@mysql_select_db($L2JBS_config['mysql_db'], $link)
or die ('Error '.mysql_errno().': '.mysql_error());
?>
|
|
|