search
HomeBackend DevelopmentPHP Tutorialphp修改数据库出现问题

<form action="guanli_ok.php" method="post" enctype="multipart/form-data" name="form2" id="form2">      <table width="527" height="282" border="0" cellpadding="0" cellspacing="0">        <tr>          <td width="194" height="46"><div align="left"><?php echo $_SESSION['user'];?> 用户信息修改</div></td>          <td width="333"><div align="left"></div></td>        </tr>         <tr>          <td height="46"><div align="right">用户名:</div></td>          <td><div align="left"><input type="text" id="user" readonly="readonly" value="<?php echo $_SESSION['user'];?>"/></div></td>        </tr>        <tr>          <td height="40"><div align="right">原密码:</div></td>          <td><div align="left"><input type="text" id="pwd" /></div></td>        </tr>        <tr>          <td height="30"><div align="right">新密码:</div></td>          <td><div align="left"><input type="text" id="xpwd" /></div></td>        </tr>        <tr>          <td height="30"><div align="right">确认密码:</div></td>          <td><div align="left"><input type="text" id="quren" /></div></td>        </tr>        <tr>          <td height="30"><div align="right">部门:</div></td>          <td><div align="left"><input type="text" id="section" /></div></td>        </tr>        <tr>          <td height="30"><div align="right">真实姓名:</div></td>          <td><div align="left"><input type="text" id="name" /></div></td>        </tr>        <tr>          <td height="30"> </td>          <td><input type="submit" id="xiugai" value="确认修改"/> </td>        </tr>      </table>    </form>


这个是guanli_ok.php
<?php header("content-type:text/html;charset=utf-8");		//设置文件编码include("conn/conn.php");							//包含数据库连接文件if(isset($_POST['Submit']) and $_POST['Submit']=="提交"){		//判断提交按钮是否存在	$user=$_POST['user'];	        //定义用户名变量	$pwd=$_POST['pwd'];				//定义原密码变量	$xpwd=$_POST['xpwd'];					//定义新密码	$section=$_POST['section'];			//定义定义部门	$name=$_POST['name'];				//定义真实姓名	$insert=mysql_query("update tb_book set pwd='$xpwd',section='$section',name='$section' where id='$user' pwd='pwd'",$conn);		//执行更新操作	echo mysql_error();	if($insert){							//判断更新语句是否执行成功		echo "<script>alert('修改成功!');window.location.href='index.php'</script>";			//输出更新成功提示	}	else{		echo "<script>alert('修改失败!');window.location.href='insert.php'</script>";		//输出更新失败提示	}}?>

点击提交后调到guanli_ok.php  但是那边空白一片 也不会提示修改成功或者失败  是什么原因啊。。求解决方案


回复讨论(解决方案)

SQL 串写错了
$insert=mysql_query("update tb_book set pwd='$xpwd',section='$section',name='$section' where id='$user'  AND pwd='pwd'",$conn); 

改了之后还是没反应,,,

SQL 串写错了
$insert=mysql_query("update tb_book set pwd='$xpwd',section='$section',name='$section' where id='$user'  AND pwd='pwd'",$conn); 

还是没反应啊。。

请你打开 php 的错误显示功能

请你打开 php 的错误显示功能

开启了  但是还是空白一片

 
if(isset($_POST['Submit']) and $_POST['Submit']=="提交"){ 不用解释了吧。。。

 
if(isset($_POST['Submit']) and $_POST['Submit']=="提交"){ 不用解释了吧。。。 已改  但是还是空白。,。


 
if(isset($_POST['Submit']) and $_POST['Submit']=="提交"){ 不用解释了吧。。。 已改  但是还是空白。,。
你没进if 

if(isset($_POST['xiugai']) and $_POST['Submit']=="确认修改"){ 

          <p class="yy">                  <p class="yy">     <p class="yy">      <td><input type="submit" id="xiugai" value="确认修改"/> </td> if(isset($_POST['Submit']) and $_POST['Submit']=="提交"){ 不用解释了吧。。。     </p>已改  但是还是空白。,。    </p> 你没进if   if(isset($_POST['xiugai']) and $_POST['xiugai']=="确认修改"){              </p> ...

php.ini 中
display_errors = On
重启 web 服务器

你的错误实际产生于 conn/conn.php

如果你的错误显示是打开的话
$insert=mysql_query("update tb_book set pwd='$xpwd',section='$section',name='$section' where id='$user' pwd='pwd'",$conn);        //执行更新操作
echo mysql_error(); //这里一定是有输出的,因为 sql 指令错了

conn

<?php$conn=mysql_connect("localhost","root","");			//连接数据库服务器mysql_select_db("db_book",$conn);						//连接数据库mysql_query("set names utf8");							//对数据库中编码格式进行转换,避免出现中文乱码的问题?>


错误

Object not found!
The requested URL was not found on this server. The link on the referring page seems to be wrong or outdated. Please inform the author of that page about the error. 

If you think this is a server error, please contact the webmaster. 

Error 404
localhost
06/30/15 13:38:48
Apache/2.2.9 (APMServ) mod_ssl/2.2.9 OpenSSL/0.9.8h PHP/5.2.6 

Object not found!
The requested URL was not found on this server. The link on the referring page seems to be wrong or outdated. Please inform the author of that page about the error. 

If you think this is a server error, please contact the webmaster. 

Error 404
localhost
06/30/15 13:38:48
Apache/2.2.9 (APMServ) mod_ssl/2.2.9 OpenSSL/0.9.8h PHP/5.2.6 




你开始说是guanli_ok.php  你截图是guanl_ok.php  


Object not found!
The requested URL was not found on this server. The link on the referring page seems to be wrong or outdated. Please inform the author of that page about the error. 

If you think this is a server error, please contact the webmaster. 

Error 404
localhost
06/30/15 13:38:48
Apache/2.2.9 (APMServ) mod_ssl/2.2.9 OpenSSL/0.9.8h PHP/5.2.6 




你开始说是guanli_ok.php  你截图是guanl_ok.php   我改了   打开发现是空白的。。


Object not found!
The requested URL was not found on this server. The link on the referring page seems to be wrong or outdated. Please inform the author of that page about the error. 

If you think this is a server error, please contact the webmaster. 

Error 404
localhost
06/30/15 13:38:48
Apache/2.2.9 (APMServ) mod_ssl/2.2.9 OpenSSL/0.9.8h PHP/5.2.6 




你开始说是guanli_ok.php  你截图是guanl_ok.php   没有错误提示

php.ini 中
display_errors = On
重启 web 服务器

你的错误实际产生于 conn/conn.php

如果你的错误显示是打开的话
$insert=mysql_query("update tb_book set pwd='$xpwd',section='$section',name='$section' where id='$user' pwd='pwd'",$conn);        //执行更新操作
echo mysql_error(); //这里一定是有输出的,因为 sql 指令错了

是我conn错了吗?

print_r($_POST); 就能发现是个空数组,怎么都不可能进入if里面。肯定为空了。

把你的form 定义改一改。
给 每个元素加上name 属性。


submit 也是一样,value改成value="提交"


改成


应该就能进入if分支了



Object not found!
The requested URL was not found on this server. The link on the referring page seems to be wrong or outdated. Please inform the author of that page about the error. 

If you think this is a server error, please contact the webmaster. 

Error 404
localhost
06/30/15 13:38:48
Apache/2.2.9 (APMServ) mod_ssl/2.2.9 OpenSSL/0.9.8h PHP/5.2.6 




你开始说是guanli_ok.php  你截图是guanl_ok.php   没有错误提示

你打开一个不存在的页面  当然是报404了。。。   
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

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-

Build a React App With a Laravel Back End: Part 2, ReactBuild a React App With a Laravel Back End: Part 2, ReactMar 04, 2025 am 09:33 AM

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

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.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

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' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

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

Notifications in LaravelNotifications in LaravelMar 04, 2025 am 09:22 AM

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

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: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

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

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)