//1.增加一个字段 alter table user add COLUMN new1 VARCHAR(20) DEFAULT NULL; //增加一个字段,默认为空 alter table user add COLUMN new2 VARCHAR(20) NOT NULL; //增加一个字段,默认不能为空 //2.删除一个字段 alter table user DROP COLUMN new2; //删除一个字段 //3.修改一个字段 alter table user MODIFY new1
use Symfony\Component\HttpFoundation\Session\Session;//存储session $session = new Session;$session->set("u_name",$ar->u_name);$session->set("u_pwd",$ar->u_pwd);//每次取session必加上 use Symfony\Component\HttpFoundation\Session\Sess