Issue with PHP MySQL and insert into UTF-8

前端 未结 1 1044
逝去的感伤
逝去的感伤 2021-01-23 15:47

I have a problem with php & mysql, insert to database using utf-8. first file: addsite:



        
1条回答
  •  盖世英雄少女心
    2021-01-23 15:52

    add this line:

        mysql_query("SET NAMES 'utf8'");
    
    Like this
    
    if(!(@mysql_connect("$host","$user","$pass") && @mysql_select_db("$tablename"))) {
        ?>
        
        MSQL ERROR
        

    Also: - Add meta charset to the form page

    
    

    or HTML5

      
    

    0 讨论(0)
提交回复
热议问题