Xinglin classmate record 5

WBOY
Release: 2016-07-29 08:33:41
Original
997 people have browsed it

密码查询:class/querypsw.php



询问密码


include "config.php";
//询问班级注册问题密码
if ($class){
$headers .= "Content-Type: text/html; charset=gb2312n"; // Mime type
$subject="询问班级注册问题密码 "; //主题
$message=nl2br($message);
$message="查询人:".$name."
留言:
".$message;     //内容
   mail($superemail,$subject,$message,$headers);
   echo "恭喜您,您的请求已经向管理员发出,近期内请注意查收email。";
   exit;
  }
  //询问个人注册密码
  if ($member){  
  $result = mysql_query("SELECT * FROM user where user='$username'",$db);
  if (mysql_num_rows($result)==0){  //若返回列的数目为0,说明无此资料
echo "我们的数据库中无此用户,请确认。注意大小写。返回";
exit;}
   $myemail=mysql_result($result,0,"email");//读取user数据库中的email
    if (!$myemail){                         //如果还没有email,则返回
     echo "我们的数据库中没有您的email,请再次填写。返回";
     exit;
    }
$psw=mysql_result($result,0,"psw");      //密码
$name=mysql_result($result,0,"name");    //姓名
$subject="询问个人注册密码";
$message=$name.",您好。您的用户名是".$username.",密码是".$psw."。
-----------------------
".$sitename."";      //信件内容
$headers .= "Content-Type: text/html; charset=gb2312n"; // Mime type
mail($myemail,$subject,$message,$headers);
   echo "恭喜您,系统已经向您的信箱中发出了答复信件,请注意查收email。";
   exit;
  }
?>  


    
        
      
        
        
        
      
    
  
          
询问密码

          

        

          
询问班级注册问题答案

            您的姓名  
            
            
您的留言(写上能证实您身份的简短留言及email地址)

            

            系统将向班级管理员发送您的请求,是否确认?

          
            
            

          

        

          

        

          询问个人注册密码

          

          您的用户名(不是姓名)

          

          
          

          

          

            系统将会向您注册的信箱中发发送密码,是否确认?

          
          
        

        

        
    


悄悄话:privatenote.php
session_start(); // 开始session
if(!session_is_registered("userregister")||($userregister==""))//检查是否注册,如userregister未注册或session为空值,重新注册.
{
echo "请重新注册
";
exit;
}
//删除留言
include "config.php";
if ($del=="1"){
mysql_query("delete from privatenote where",$db); //以id为删除标志
echo "删除成功!";
}
//添加留言
if ($Submit){
$id=time();                     //以时间戳为记录号
$time=date("Y年m月d日 h:i:s A");//留言时间
$result = mysql_query("SELECT * FROM user where user='$userregister'",$db);
$fromuser=mysql_result($result,0,'name');                       //发消息人姓名
$result = mysql_query("SELECT * FROM user where name='$yname'",$db);
$touser=mysql_result($result,0,'user'); ;          //接受人用户名
$message=nl2br(strip_tags($ynote));//留言内容
mysql_query("INSERT INTO privatenote (id,fromuser,touser,time,message) values ('$id','$fromuser','$touser','$time','$message')",$db); //写入数据库
echo "留言成功!";
}
?>



悄悄话




    
    
  
  
    

                                                                                                                ">Who do you want to send a private message to?  
          
          

          留言内容:

          
          

            
          
          
  
          
        


      
    
  
  
      
  
      

    
  
      

       $result = mysql_query("SELECT * FROM user where user='$userregister'",$db);
$name=mysql_result($result,0,"name");//姓名
echo $name;
?>
      的悄悄话

                                                                                                                                                       privatenote where touser='$userregister' ORDER BY time DESC",$db);
$row=mysql_num_rows($result);           //Total number of private messages
         $unlook=0; for ($i=0;$i<$row;$i++){
                                                                                                                                                                                                fromuser'); //The name of the person who left the message
                              $time=mysql_result($result,$i,'time');                                Content
         $look_s="Already seen";                                                                                                                                                    $look_s="                                          
                  if ($look=="0"){$unlook++ ;$look_s="Not yet viewed";} //Calculate the number of unseen private notes and change the comment
                                                                                                                                                                                                                                                                 Change to 1 c echo "No.", $ i+1, "Bar Send the person:", $ Fromuser, "Message Time:", $ Time, "& LT; Br & GT;"; ,"
------",$look_s;
      echo "Delete
";
                                                                                                                                                                                                                                                                    Echo "Total number of private messages:",$row,".",$unlook,"New private messages.";



以上就介绍了 杏林同学录五,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!