update.php是用来更新数据的吗?
- 内容介绍
- 文章标签
- 相关推荐
本文共计105个文字,预计阅读时间需要1分钟。
php// 在update.php文件中,分配变量并显示模板assign(id, $id);assign(title, $title);assign(author, $author);assign(content, $content);display(update.);
assign("id",$id); $smarty->assign("title",$title); $smarty->assign("author",$author); $smarty->assign("content",$content); //$smarty->assign($time); $smarty->display("update.html"); ?>
本文共计105个文字,预计阅读时间需要1分钟。
php// 在update.php文件中,分配变量并显示模板assign(id, $id);assign(title, $title);assign(author, $author);assign(content, $content);display(update.);
assign("id",$id); $smarty->assign("title",$title); $smarty->assign("author",$author); $smarty->assign("content",$content); //$smarty->assign($time); $smarty->display("update.html"); ?>

