[Question] kết nối tới database |
20/08/2007 01:22:19 (+0700) | #1 | 79793 |
sonzin
Member
|
0 |
|
|
Joined: 11/06/2007 10:42:05
Messages: 2
Offline
|
|
Đây kà file config.php của em
<?php
# You NEED to alter the following settings
# Where are the scripts http://sonzin.newsit.es)
$BaseURL="http://http://sonzin.newsit.es/";
# Your e-mail address (shown if e-gold transaction isn't confirmed) and given if player wins
$AdminEmail="sonzin@excite.com";
# These are the possible amounts people can choose. (0.10, 0.1, .1 & .10 are all valid)
$Bets=array(1,5,7.5,10,20,50,75,100,200,225,250);
# What would you like the submit button to say?
$SubmitButton="Place Your Bet";
# Currency symbol (Displayed in front of all money values)
$Currency="$";
# E-gold account number This is where you will be paid and pay out from
$EgoldAccount="******";
#E-gold currency code (44 is UK pounds, 1 is US dollars, 85 is EURO) (for full list: http://www.e-gold.com/docs/e-gold_sci.html)
$EgoldCountry="1";
# The E-gold metal (Gold:1, Silver: 2, Platinum:3, Palladium: 4) that you want people to pay with
$EgoldMetal="2";
# Metal to pay people out with
$EgoldMetalOut="Platinum";
# You need to supply your passphrase for automatically paying out
$EgoldPassphrase="pass";
# Database settings:
# MySQL Server (Almost always: "localhost")
$DBServer="http://sonzin.newsit.es";
# MySQL Username
$DBUser="sonzin_user";
# MySQL Password
$DBPassword="123456";
# Name of MySQL database
$DBName="database";
# Maximum number of retries before giving administrators email address, while player is waiting for e-gold confirmation.
$MaxRetries=5;
# How many "previous winners" to show in the previous winners table
$ShowWinners=2;
# How long to keep losing/canceled bets for (in days) (Handy to leave them in if player claims they didn't get paid)
$KeepLosers=2;
# Horse names (You must have 10)
$Horses=array("If You See Kay","Hanky Panky","Pride of the South","Cinderella Story","Irish Republic","Pandora","Memphis Belle","Tsunami","Noble Locks","FourtyTwoDoubleDee");
# Profit (as a %) If you choose "75" you will keep 75% of the money spent, if you choose 10% you will keep 10% of the money spent
$Profit=25;
# Turn on images, on the horse pick form? (true/false)
$Images=true;
# Title of the game - Shown as the HTML page title
$GameTitle="Gambling Coast Horse Racing";
#############
# Ignore everything below here
$EgoldName=$GameTitle;
mysql_connect ($DBServer, $DBUser, $DBPassword) or die (mysql_error());
mysql_select_db ($DBName) or die (mysql_error());
?>
Còn đây là file install.php. Em muốn chạy cái file install.php này thì thiết lập thế nào ạ... newbie mới tập sự nên chưa biết cách kết nối.. mong các anh giúp đỡ em, mà tốt hơn thì các anh hướng dẫn ch0 em qua nick YM the_last_samurai_sh... em xin cảm ơn
|
|
|
|
|
[Question] kết nối tới database |
20/08/2007 02:17:48 (+0700) | #2 | 79799 |
|
minhquan1712
Member
|
0 |
|
|
Joined: 07/09/2006 16:17:25
Messages: 240
Offline
|
|
nếu bạn đọc được bài viết này thì bạn nên xem trong box tin nhắn của bạn nhé |
|
|
|
|
[Question] kết nối tới database |
20/08/2007 03:02:09 (+0700) | #3 | 79809 |
|
minhquan1712
Member
|
0 |
|
|
Joined: 07/09/2006 16:17:25
Messages: 240
Offline
|
|
bạn chỉ cần thiết lập sao cho đúng với database của bạn thôi |
|
|
|
|
[Question] kết nối tới database |
20/08/2007 03:05:21 (+0700) | #4 | 79810 |
sonzin
Member
|
0 |
|
|
Joined: 11/06/2007 10:42:05
Messages: 2
Offline
|
|
quên mất ko gửi phần install:
<?php
require("./config.php");
$MakeDataBase=<<<END
CREATE TABLE `horserace` (
`batch` int(11) default NULL,
`ip` varchar(15) NOT NULL default '',
`when` datetime NOT NULL default '0000-00-00 00:00:00',
`pay_id` int(15) NOT NULL auto_increment,
`amount_in` float default NULL,
`amount_out` float default NULL,
`status` varchar(10) NOT NULL default 'unpaid',
`horse` tinyint(4) default NULL,
`winning` tinyint(4) default NULL,
PRIMARY KEY (`pay_id`)
) TYPE=MyISAM;
END;
if (mysql_query($MakeDataBase)){
print "Database installed correctly";
} else {
print "There was an error:".mysql_error();
}
?>
|
|
|
|
|
[Question] kết nối tới database |
20/08/2007 12:10:32 (+0700) | #5 | 79901 |
|
kid_b0d
Member
|
0 |
|
|
Joined: 16/08/2006 00:49:55
Messages: 70
Location: Phan thiết, Bình thu
Offline
|
|
Chạy file install, nếu file config.php của bạn khai báo đúng DBname,username,passwd đúng với Database thì nó sẽ require("./config.php") và nếu đúng thì nó tiếp tục chạy, còn không thì báo lỗi"There was an error:" |
|
|
|
|
[Question] Re:kết nối tới database |
20/08/2007 20:51:58 (+0700) | #6 | 79933 |
MicrosoftX
Member
|
0 |
|
|
Joined: 04/03/2007 20:46:12
Messages: 91
Offline
|
|
chưa hiểu ý hỏi, bạn mở đầu topic nói rõ hơn đc ko?? tôi chưa hiểu ý hỏi ah mà:
1 - Để code trong thẻ BB code cho dễ nhìn chút khó nhìn quá.
2 - mấy góp ý về cách trình bày code thì viết sau đợi coi hỏi rõ là gì đã |
|
|
[Question] Re: kết nối tới database |
18/10/2007 07:34:49 (+0700) | #7 | 91189 |
hoanglinh_nb
Member
|
0 |
|
|
Joined: 23/04/2007 16:40:47
Messages: 14
Offline
|
|
Các bác cho hỏi cái $DBServer set làm sao nếu database cùng host với file cần connect |
|
|
[Question] Re: kết nối tới database |
18/10/2007 10:52:33 (+0700) | #8 | 91204 |
|
learn2hack
Elite Member
|
0 |
|
|
Joined: 29/06/2006 16:32:37
Messages: 825
Offline
|
|
Bạn thử để là 'localhost' xem được không. |
|
Blog: http://hontap.blogspot.com
Tải phần mềm miễn phí: http://www.taiphanmem.org |
|
Users currently in here |
1 Anonymous
|
|
Powered by JForum - Extended by HVAOnline
hvaonline.net | hvaforum.net | hvazone.net | hvanews.net | vnhacker.org
1999 - 2013 ©
v2012|0504|218|
|
|