Game


You are not connected. Please login or register

[DKVS] Share DEMO Web Add KNB

Go down  Message [Page 1 of 1]

1[DKVS] Share DEMO Web Add KNB Empty [DKVS] Share DEMO Web Add KNB Tue Apr 22, 2014 11:11 am

Fenix

Fenix
Game Master
Game Master
Code tạm bợ cái admin panel bằng web cho ace add tiên khỏi phải tắt server or xài gm tool

Các bạn có thể phát triển và tích hợp để tự tạo nạp thẻ cho mình nhé

Hướng dẫn

tạo 1 file có tên là admintest.php với nội dung như sau

Code:
<?php
 $dbhost = '127.0.0.1:3306';
 $dbuser = 'root';
 $dbpass = 'root';
 $conn = mysql_connect($dbhost, $dbuser, $dbpass) or die ('Error connecting to mysql');
 
 $dbname = 'warriors';
 mysql_select_db($dbname);
if(isset($_POST['submit']))
{
{
$user = $_POST['username'];
$num = mysql_query("select * from player where userName = '$user'");
if(mysql_num_rows($num) > 0)
{
$nhanknb = $_POST['money'];
mysql_query("INSERT INTO `warriors`.`chongzhi` (`id`,`userName`,`chrName`,`costmoney`,`golden`,`chongzhichuli`)VALUES('','$user','$user','0','$nhanknb','0')");
$mes = "Add thanh cong $nhanknb KNB";
}
if(mysql_num_rows($num) == 0)
{
$mes = "Tai khoan k ton tai";
}
}
}
?>
<html>
<head>
<title>Admin Panel | Đao Kiếm | Beta Server</title>
</head>
<body >
<form id="actForm" name="actForm" method="post" action="admintest.php">
<td><font color='blue'>Username</td>
<input type="text" name="username" id="username" value="">
<td><font color='blue'><br />KNB ADD</td>
<input type="text" name="money" id="money" value="">
<input type="submit" value="ADD" id="actform" name="submit" />
<td><br /><? echo $mes;?></td>
</form>

</body>
</html>

Chạy và thưởng thức [DKVS] Share DEMO Web Add KNB 4

Nhớ thanks nhá!!!!!!

Ai lỗi không làm được thì run lại query này nhé


DROP TABLE IF EXISTS `chongzhi`;CREATE TABLE `chongzhi` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`userName` varchar(128) COLLATE utf8_unicode_ci NOT NULL DEFAULT '' COMMENT '用户名',
`chrName` varchar(128) COLLATE utf8_unicode_ci NOT NULL DEFAULT '' COMMENT '角色名',
`costmoney` int(20) unsigned NOT NULL DEFAULT '0' COMMENT '充值人民币',
`golden` int(20) unsigned NOT NULL DEFAULT '0' COMMENT '充值获取元宝数',
`chongzhichuli` int(1) unsigned NOT NULL DEFAULT '0' COMMENT '0为未处理1为处理',
`chongzhidatatime` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

http://www.devgame.ga

Back to top  Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum