修改密码后接收不了数据
最后的输出结果是 帐号或密码不能为空
在添加数据的时候是没有问题的,但是如果是修改密码的时候就出现问题了
用var_dump()打印的时候,还没有提交表单可以打印出用户名,提交后打印不出用户名
$id = (int) $input->get('id');
//如果编辑状态,取出用户名
if( $id>0 ){
$sql = "SELECT * FROM adminuser WHERE id='{$id}' limit 1";
$editUser = $db->get($sql);
if( !$editUser ){
echo "不存在帐号";exit;
}
}
//添加功能和修改功能,都在这里
$do = $input->get('do');
if( $do == 'save' ){
$username = $id>0 ? $esitUser['username'] : trim($input->post('username'));
$passwd = trim($input->post('passwd'));
//不能为空
if( empty($username) || empty($passwd) ){
echo "帐号或密码不能为空";exit;
}
//用户名不能重复
$sql = "SELECT * FROM adminuser WHERE username='{$username}' limit 1";
$row = $db->get($sql);
if( !$row ){
//执行插入动作
$sql = sprintf("INSERT INTO adminuser(username,passwd) value ('%s','%s')",$username,$passwd);
$db->query($sql);
header("location: adminuser.php");
exit;
}elseif( $id>0 ){
$sql = sprintf("UPDATE adminuser set passwd='{$passwd}' WHERE id='{$id}' ");
$db->query($sql);
header("location: adminuser.php");
}else{
echo "用户名重复了";exit;
}
}
回复讨论(解决方案)
$id 是什么?
你在插入新用户时并没有取回相应的 id
那么 修改时用到的 id 是从哪里来的?
$id 是什么?
你在插入新用户时并没有取回相应的 id
那么 修改时用到的 id 是从哪里来的?
$id是客户机的cookie的name,在input类里面调用$__GET,来获取
$id是判断用户有没有登录的,只要登录就可以获取当前登陆的id
添加用户的时候只会跳回前一个管理页面,但还是现在管理者的id
action=".....";,,,修改的时候会获得当前登陆用户的id,一起提交
至少在你贴出的代码片段中,没有看到你的这个赋值过程
$sql = sprintf("INSERT INTO adminuser(username,passwd) value ('%s','%s')",$username,$passwd);
$db->query($sql);
header("location: adminuser.php");
exit;
然后就结束了,并没有获取 id
你说 在input类里面调用$__GET,来获取
并且 action=".....";,,,修改的时候会获得当前登陆用户的id,一起提交
显然你的表单是 get 方式的
那么:action 上的任何 url 参数都会因提交时的 url 重组而失效
也就是你根本就没有提交 id
//用户名不能重复
$sql = "SELECT * FROM adminuser WHERE username='{$username}' limit 1";
$row = $db->get($sql);
判断用户名是否重复,是在插入数据的时候判断的,if条件判断有问题
至少在你贴出的代码片段中,没有看到你的这个赋值过程
$sql = sprintf("INSERT INTO adminuser(username,passwd) value ('%s','%s')",$username,$passwd);
$db->query($sql);
header("location: adminuser.php");
exit;
然后就结束了,并没有获取 id
你说 在input类里面调用$__GET,来获取
并且 action=".....";,,,修改的时候会获得当前登陆用户的id,一起提交
显然你的表单是 get 方式的
那么:action 上的任何 url 参数都会因提交时的 url 重组而失效
也就是你根本就没有提交 id
大神,不好意思,我说得不好,也没有表达清楚
表单提交流程是这样的,用post方式来提交的,但是点了提交的时候就在action="?do=save&"加了这些元素
然后通过get的方式来获取网址上面的值来判断有没有点提交再执行添加数据,而是为了修改数据的时候有识别功能
我刚刚在调试的时候也有点眉目知道是点了提交接收不到id的值导致的,我再结合大神的分析去弄弄
有什么表达的不清楚的,请大神多多包涵,我刚学两个月左右,也有很多知识点不是很清楚的,也说不清楚,还望大神多多包涵
//用户名不能重复
$sql = "SELECT * FROM adminuser WHERE username='{$username}' limit 1";
$row = $db->get($sql);
判断用户名是否重复,是在插入数据的时候判断的,if条件判断有问题
$sql = "SELECT * FROM adminuser WHERE username='{$username}' limit 1";
$row = $db->get($sql);
if( !$row ){
//执行插入动作
$sql = sprintf("INSERT INTO adminuser(username,passwd) value ('%s','%s')",$username,$passwd);
$db->query($sql);
header("location: adminuser.php");
exit;
}else{
echo "用户名重复了";exit;
}
大神,这段代码,我是这样想法的,首先查询数据库,然后通过数据库的返回的结果集取一行,用if来判断是否为真,如果为真,就说明数据库里面有一条这样的名字的数据了,弹出重复的提示,否则就添加一条数据
写的时候也有各种的问题存在,也希望大神能指出和给一些教导
解决问题了,是在from表单传递数据的时候只把值传递了过去,但在action里面没有声明这个值的名称,导致的在接收表单数据的时候接收不到而出现的问题

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:
