如何在查询字符串中传递多个id

时间:2018-02-13 18:22:45

标签: php

我有一个链接,我想传递多个值,但不知道如何。如果我只传递$ id,那么查询字符串可以工作,但不能使用$ title。

我的代码:

<td><a href="VotingPoll.php?id='.$id.'?title='.$title.'"><button class="btn btn-primary btn-small">VIEW</button></a></td>

1 个答案:

答案 0 :(得分:1)

您可以发送多个具有相同名称的查询参数:

<td><a href="VotingPoll.php?id='.$id.'&id='.$id2.'&title='.$title.'"><button class="btn btn-primary btn-small">VIEW</button></a></td>