我正在提交一个表单,该表单首先将数据输入数据库,然后编写来自表单字段的消息。我想要的功能是,如果用户重新提交表单(2 或 3 次),应该在同一个变量中组成三个消息?
下面是我如何创建我的消息变量
if(isset($_REQUEST['save'])){
$mesg = "<strong>Logging Off at </strong> " . date("d F Y h:i:s A");
$mesg .= "<BR><BR>";
$mesg .= "<strong>Project</strong>: " . $prj_name;
$mesg .= "<BR>";
$mesg .= "<strong>Deliverable</strong>: ". $dlvrbl_name;
$mesg .= "<BR>";
$mesg .= "<strong>Time spent</strong>: " . $time_spent;
$mesg .= "<BR>";
$mesg .= "<strong>Percentage</strong>: " . $percent . "%";
$mesg .= "<BR>";
$mesg .= "<strong>Comments</strong>: " . $comments;
$mesg .= "<BR><BR>";
$mesg .= "Regards,<BR>".$employee;
}
它对于 1 次表单提交工作正常,但是如果我需要在同一个变量中包含 2 或 3 条消息怎么办?提前致谢