Home  >  Article  >  php教程  >  聊天室php&mysql(五)

聊天室php&mysql(五)

WBOY
WBOYOriginal
2016-06-13 12:39:551117browse

第五个页面name="changenick.php"


   
include "../signup/mysql.php";
//echo $userid;
if($action=="ok")
{
$sql="select * from chat_user_list where userid='$nick'";
$result=mysql_query($sql) or die(mysql_error());
if(!$result) echo "该呢称已被他人占用 请重新填写";
else   
    {
$sql="update chat_user_list set id='$nick',passwd='$passwd',sex='$sex' where userid='$userid'";
$result=mysql_query($sql)or die(mysql_error());

$sql="update chat_user set id='$nick',passwd='$passwd',sex='$sex' where userid='$userid'";
$result=mysql_query($sql)or die(mysql_error());
     }
if($result){
           echo "";
           }

}


?>



:::FEIT聊天室:::







  
  

    

  
      
    


    

  
      
      
    


    

  
      

Statement:
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
Previous article:聊天室php&mysql(四)Next article:改进的IP计数器