求大神帮忙看看哪里出错了。
我想实现用户之间的通信,思想是建立一个消息表,然后把收件人用户名、发件人用户名、消息等放进去,然后谁想看发给自己的消息就去消息表中查找收件人是自己的记录。现在做到发消息这一块儿了,发完消息我发现 数据库消息表中并没有记录,应该是没有正确插入表中,大神帮忙看看是哪里错了,我也是刚接触PHP的,以前上课学的东西都是基础的,运用到实践中总是出很多问题。
下面附上相关的代码( 其中sqltable是用户表,sqltable2是消息表,user_name是用户表中存储用户名的,s_name是消息表中存储发件人的,r_name是消息表中收件人)
config.php
<?php //常规参数设置$servername="localhost"; //主机名$sqlservername="root"; //mysql数据库用户名$sqlserverpws="lmy"; //mysql数据库密码$sqlname="lmy"; //数据库名$sqltable="user"; //username表名$sqltable2="message";$admin_name="lmy"; //管理员用户名$admin_pws="lmy"; //管理员密码?>
message.php
<?phpsession_start(); //一定要的if($_SESSION["name"]==""){echo "<script>location.href='index.php';</script>";exit;}//上面的要验证过滤的?><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312"><title>给管理员发信</title></head><body><center> <form name="form1" method="post" action="message_cl.php"><table width="68%" height="304" border="0" cellpadding="0" cellspacing="1" bgcolor="#000000"> <tr align="center" bgcolor="#CCCCCC"> <td colspan="2">发信(message.php)||<a href="index.php">返回</a></td> </tr> <tr bgcolor="#CCCCCC"> <td align="right">收件人:</td> <td align="left"><input name="r_name" type="text" id="r_name"></td> </tr> <tr bgcolor="#CCCCCC"> <td align="right">消息内容:</td> <td align="left"><input name="content" type="text" id="content" size="40"></td> </tr> <tr align="center" bgcolor="#CCCCCC"> <td colspan="2"><input type="submit" name="Submit" value="发送"> <input type="reset" name="Submit" value="重置"></td> </tr> </table> </form></center></body></html>
message_cl.php
<?php session_start(); //一定要的if($_SESSION["name"]==""){echo "<script>location.href='index.php';</script>";exit;$_SESSION["name"]=$row[user_name];//这里是SESSION来验证用户的合法性}include("config.php"); //参数页面提取过来if(empty($_POST["r_name"])){echo ("<script type='text/javascript'> alert('请填写收件人!');history.go(-1);</script>");exit;}if(empty($_POST["content"])){echo ("<script type='text/javascript'> alert('请填写消息内容!');history.go(-1);</script>");exit;}$s_name=$_SESSION["name"];$r_names=$_POST["r_name"];$content=$_POST["content"];$add_time=date("Y-m-d");$is_open="no";$db=mysql_connect($servername,$sqlservername,$sqlserverpws);mysql_select_db($sqlname,$db) ;$sql="select * from $sqltable where user_name='$s_name'";$result=mysql_fetch_row(mysql_query($sql));if(!$result){echo ("<script type='text/javascript'> alert('无效的收件人!');history.go(-1);</script>");}else{$sql="insert into $sqltable2(s_name,r_name,content,add_time,is_open) values('$s_name','$r_name','$content','$add_time','$is_open') ";mysql_query($sql);echo ("<script type='text/javascript'> alert('发送成功');location.href='index.php';</script>");}?>
回复讨论(解决方案)
message_cl.php 37 行
mysql_query($sql) or die(mysql_error());
$s_name=$_SESSION["name"];
$r_names=$_POST["r_name"];
$content=$_POST["content"];
输出一下,看有 值没
还有insert into $sqltable2(s_name,r_name,content,add_time,is_open) values('$s_name','$r_name','$content','$add_time','$is_open')
用SQL操作一下表,看结果是什么
哈哈,把分给我吧,已经远程协助解决。就是sql表里没有is_open字段而php又要插入is_open字段值,还有就是sql语句拼装问题

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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

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

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

The enumeration function in PHP8.1 enhances the clarity and type safety of the code by defining named constants. 1) Enumerations can be integers, strings or objects, improving code readability and type safety. 2) Enumeration is based on class and supports object-oriented features such as traversal and reflection. 3) Enumeration can be used for comparison and assignment to ensure type safety. 4) Enumeration supports adding methods to implement complex logic. 5) Strict type checking and error handling can avoid common errors. 6) Enumeration reduces magic value and improves maintainability, but pay attention to performance optimization.

Session hijacking can be achieved through the following steps: 1. Obtain the session ID, 2. Use the session ID, 3. Keep the session active. The methods to prevent session hijacking in PHP include: 1. Use the session_regenerate_id() function to regenerate the session ID, 2. Store session data through the database, 3. Ensure that all session data is transmitted through HTTPS.

The application of SOLID principle in PHP development includes: 1. Single responsibility principle (SRP): Each class is responsible for only one function. 2. Open and close principle (OCP): Changes are achieved through extension rather than modification. 3. Lisch's Substitution Principle (LSP): Subclasses can replace base classes without affecting program accuracy. 4. Interface isolation principle (ISP): Use fine-grained interfaces to avoid dependencies and unused methods. 5. Dependency inversion principle (DIP): High and low-level modules rely on abstraction and are implemented through dependency injection.

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

RESTAPI design principles include resource definition, URI design, HTTP method usage, status code usage, version control, and HATEOAS. 1. Resources should be represented by nouns and maintained at a hierarchy. 2. HTTP methods should conform to their semantics, such as GET is used to obtain resources. 3. The status code should be used correctly, such as 404 means that the resource does not exist. 4. Version control can be implemented through URI or header. 5. HATEOAS boots client operations through links in response.

In PHP, exception handling is achieved through the try, catch, finally, and throw keywords. 1) The try block surrounds the code that may throw exceptions; 2) The catch block handles exceptions; 3) Finally block ensures that the code is always executed; 4) throw is used to manually throw exceptions. These mechanisms help improve the robustness and maintainability of your code.

The main function of anonymous classes in PHP is to create one-time objects. 1. Anonymous classes allow classes without names to be directly defined in the code, which is suitable for temporary requirements. 2. They can inherit classes or implement interfaces to increase flexibility. 3. Pay attention to performance and code readability when using it, and avoid repeatedly defining the same anonymous classes.
