當前位置: 首頁>>代碼示例>>PHP>>正文


PHP sql::dclose方法代碼示例

本文整理匯總了PHP中sql::dclose方法的典型用法代碼示例。如果您正苦於以下問題:PHP sql::dclose方法的具體用法?PHP sql::dclose怎麽用?PHP sql::dclose使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在sql的用法示例。


在下文中一共展示了sql::dclose方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: check_login_info

function check_login_info($_username, $_password) {
	$sql = new sql();
	$query = "select id, password, date_creation from qcs_users where username = '".$_username."'";
	$rs = $sql -> dquery($query);	
	
	if ($rs[0] > 0) {
		
		
		
		$date_creation = substr($rs[1]['date_creation'], 0, 10);
		$input_password = md5(md5($_password).$date_creation);
		$db_password = $rs[1]['password'];
		$user_id = $rs[1]['id'];
		
		
		if ($input_password != $db_password)
			$user_id = -1;
			
		//	echo "password = " . $_password;
		//	echo "rs[1]['password'] = " . $rs[1]['password'];
		//	exit();
			
		if($rs[1]['password'] == md5($_password))
			$user_id = $rs[1]['id'];
	}
	
	else $user_id = -1;
	$sql -> dclose();
	return $user_id;
}
開發者ID:qcstw-dev,項目名稱:qcsasia,代碼行數:30,代碼來源:login.php

示例2: email_exists

function email_exists($_email) {
  $sql = new sql();
  $query = "select id from member where email = '".$_email."'";
  $rs = $sql -> dquery($query);	
  $sql -> dclose();

  if ($rs[0] > 0) return FALSE;
  else return TRUE;
}
開發者ID:qcstw-dev,項目名稱:qcsasia,代碼行數:9,代碼來源:tools.php

示例3: htmlspecialchars

    }
    if (isset($_GET["target"])) {
        $target = htmlspecialchars($_GET["target"]);
    }
    // insert in database
    $field_str[] = "email";
    $data_str[] = "'" . write_to_db($email) . "'";
    $field_str[] = "name";
    $data_str[] = "'" . write_to_db($company) . "'";
    $field_str[] = "country";
    $data_str[] = "'" . write_to_db($country) . "'";
    $field_str[] = "newsletter";
    $data_str[] = "'" . write_to_db($version) . "'";
    $field_str[] = "date_login";
    $data_str[] = Date("'Y-m-d H:i:s'");
    $cc = implode(',', $field_str);
    $dd = implode(',', $data_str);
    $sql = new sql();
    $query = "insert into qcs_tracking ({$cc}) values ({$dd})";
    $sql->dinsert($query);
    $sql->dclose();
}
// redirection
$host = $_SERVER['HTTP_HOST'];
$uri = rtrim(dirname($_SERVER['PHP_SELF']), '/\\');
if ($target != '') {
    header("Location: http://{$host}{$uri}/{$target}");
} else {
    header("Location: http://{$host}{$uri}/new-products");
}
exit;
開發者ID:qcstw-dev,項目名稱:qcsasia,代碼行數:31,代碼來源:tracking.php

示例4: delete_user

function delete_user($_id) {
    $sql = new sql();
	$query = 'delete from user where id = '.$_id;
	$sql -> dchange($query);
	$sql -> dclose();
}
開發者ID:qcstw-dev,項目名稱:qcsasia,代碼行數:6,代碼來源:database_api.php


注:本文中的sql::dclose方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。