php crypt type,php使用crypt()函数进行加密

一、代码<?php

$str = '应用crypt()函数进行单向加密!';     //声明字符串变量$str

echo '加密前$str的值为:'.$str;

$crypttostr = crypt($str);      //对变量$str加密

echo '

加密后$str的值为:'.$crypttostr;  //输出加密后的变量

?>

二、运行结果

参数不带salt,每次加密得出的密文都不一样。

加密前$str的值为:应用crypt()函数进行单向加密!

加密后$str的值为:$1$Re4.Gg4.$D.yd00xX0fFfIfp6KrKGN0

三、代码html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

使用crypt函数进行数据验证

$conn = mysql_connect("localhost","root","root") or die("数据库链接错误".mysql_error());

mysql_select_db("db_database21",$conn) or die("数据库访问错误".mysql_error());

mysql_query("set names gb2312");

?>

   
  
用户名: 
密码: 

if(trim($_POST[username])!= "" and trim($_POST[password])!= ""){

$usr = crypt(trim($_POST[username]),$_POST[username]);

$pwd = crypt(trim($_POST[password]),$_POST[password]);

$sql = "select * from tb_user where username = '".$usr."' and password='".$pwd."'";

$rst = mysql_query($sql,$conn);

$result=mysql_num_rows($rst);

if($result>0){

echo "用户登录成功。";

}else{

echo "用户登录失败!";

}

}else{

echo "请认真填写用户名和密码!";

}

?>

 
   

四、运行结果

8a991c4f1c67e683cb06a0e5296a194b.png

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值