问答详情
源自:2-7 用户管理之添加用户

为什么说我的用户名 密码还有年龄没有定义

<?php

header('content-type:text/html;charset= utf-8');

//接收页面

$mysqli=new mysqli('localhost','root','root','test');

if($mysqli->connect_errno){

die($mysqli->connect_error);

}

$mysqli->set_charset('utf8');

$username=$_POST['username'];

$password=md5($_POST['password']);

$age=$_POST['age'];

$act=$_GET['act'];

//跟据不同操作完成不同功能

switch($act){

case 'addUser';

echo '添加用户的操作';

break;

}

http://img.mukewang.com/57b5bf7a0001a08c08420487.jpg

提问者:慕粉4027178 2016-08-18 22:00

个回答

  • 微笑的死神
    2016-08-18 22:47:48

    form表单中看看有没有定义name