Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法通过 URL 传递变量?因为我正在尝试做这样的事情:
<a href="/testy-aparatury/przypomnienie-o-testach/formularz/form/3-wprowadz-aparat&id=18">
但它不起作用(试图传递 id)
使用问号开始查询字符串;和号用于分隔参数。
.../form/3-wprowadz-aparat?id=18
您正在寻找查询字符串。
在 PHP 中,查询字符串中的变量是 GET 参数,可从全局范围的关联数组中获得$_GET。
$_GET