phuongit
Private
- Tham gia
- 08/08/2015
- Bài viết
- 21
- Được Like
- 6
Code kích hoạt thành viên trên xenforo không biết sai chỗ nào mà không kích hoạt được, mà tin nhắn gởi đi thì OK, ai rành vụ này chỉ dùm nha
<?php
$db['servername'] = 'localhost';
$db['username'] = 'root';
$db['password'] = '';
$db['dbname'] = '';
if ($conn = mysql_connect($db['servername'],$db['username'],$db['password'])) {
if (!mysql_select_db($db['dbname'])) {
die('Not connect Database.');
}
}else{
die('Not connect MySql Server.');
}
$code = $_REQUEST['code'];
$subCode = $_REQUEST['subCode'];
$mobile = $_REQUEST['mobile'];
$serviceNumber = $_REQUEST['serviceNumber'];
$info = $_REQUEST['info'];
$arr = explode(' ', $info);
if (strlen($arr[2]) > 20){
$arr[2] = substr($arr[2], 0, 20);
}
$sql2 = "SELECT * FROM `xf_user` WHERE `username` = '$arr[2]'";
$result2 = mysql_query($sql2,$conn);
if (isset($result2) && $result2 == TRUE & mysql_num_rows($result2))
{
$sql = "UPDATE `xf_user` SET `user_state` = 'valid' WHERE `username` = '$arr[2]' AND `user_state` = 'admin";
mysql_query("set names 'utf8'");
$result = mysql_query($sql,$conn);
$responseInfo = "SDT ".$mobile."\n Tai khoan: ".$arr[2]."Ban da kich hoat nick thanh cong.\n";
}
else { $responseInfo = "SDT ".$mobile."\n Tai khoan: ".$arr[2]." Sai cu phap."; }
mysql_close($conn);
echo "0|".$responseInfo."\n SMS: http://sms.vn/";
?>
Bài viết liên quan
Bài viết mới