我想将我的表单放在一个 $variable 中,但我遇到了错误。
将这些表格放在单个变量中的正确格式是什么:
<form method="post" action="?pageid=C_beheer&cmd=edit&id=<?php echo $events['ID']; ?>&month=<?php echo $month?>&day=<?php echo $day?>&year=<?php echo $year?>">
<input type="hidden" name="up_event_id" id="event_id" value="<?php echo $events['kalenderID']; ?>">
<input type="submit" name="edit" value="Edit">
</form>
$formEdit = "这里发布代码";
我知道所有的 " 应该被 \ 转义并删除 PHP 关闭/打开标签,但是我需要用帖子中的 $variables 做什么?