子期不遇
form.html
<form action='php.php' method='post'>
<input type='text' name='text' />
<input type='submit' name='submit' value='submit' />
</from>
connect.php
$connect=new mysqli('localhost','root','','msg');//localhost基本不变的 root用户名 ‘’密码有就写 没有空 msg你要连接的数据库的名字
if ($connect->connect_error){
printf ( "Connect failed: %s\n" , $connect -> connect_error );
exit();
}else{
$connect->query("set names utf8");//设置数据库的编码为utf8
header("content-type:text/html;charset=utf8");
}
php.php
$text=$_POST['text'];
剩下的自己写sql语句写入数据库