0

目前我正在制作一个事件日历,我希望用户在那里编辑事件:

例子:

events.php http://i42.tinypic.com/sgsvth.png

编辑按钮操作转到 edit.php

编辑.php http://i41.tinypic.com/2wrl26s.png

如何将 events.php 中的 EventID 包含到 edit.php 中,以便更新适当的事件。

4

1 回答 1

0

$_GET在 URL 中使用值。

edit.php?event_id=4

像这样检索值:

$id = $_GET['event_id'];
于 2013-11-04T12:16:23.607 回答