我正在尝试显示两个用户之间的对话,我有view.php,我在那里显示消息,我也有该页面上的回复按钮。我迷失了如何将数据插入现有消息行并显示所有对话。谢谢你的帮助。
我的表结构:
id
from_user
to_user
deleted
message
date
view.php
$user = 'currentuser';
$reply = $_POST['relpy'];
$id = $_GET['id'];
if (isset($_POST['replyto']))
$reply = $_POST['reply']; {
if(!empty($reply)){
$mydb = new mysqli('localhost', 'root', '', 'db');//this is where I am stuck I am using update so if I hit reply the existing data in the row will be overwritten.
$stmt = $mydb->prepare("update messages set message = ? where from_user = ? and id = ? ");
echo $mydb->error;
$stmt->bind_param('sss', $reply, $user, $id);
$stmt->execute();
}
}
if(!empty($id)){
$mydb = new mysqli('localhost', 'root', '', 'db');
$stmt = $mydb->prepare("SELECT * FROM messages where from_user = ? and id = ? ");
$stmt->bind_param('ss', $user, $id);
$stmt->execute();
}
答案 0 :(得分:0)
如果我理解正确,您希望 NOT 在这些用户/会话之间插入另一行,但使用旧值加上新值更新当前行(消息字段)。
恕我直言,这是一个糟糕的实现,需要额外的数据处理工作,但如果您将更新查询更改为:
,则可以这样做更新消息设置message = concat(message,?)其中from_user =?和id =?