url中的视图和参数

时间:2013-10-13 20:35:40

标签: php drupal

我发了两个观点:'list'和'maps'

'list'视图有一个公开的过滤器输入字段(称为标题)

我尝试在list-view(text-format:PHP-code)的head-section中创建一个链接到maps-view。

我的问题是,如何使用GET方法执行此操作?

此代码不起作用:

<a href="maps?title=<?php $_GET['title'] ?>">maps</a>

1 个答案:

答案 0 :(得分:-1)

这很容易:)你错过了echo

<a href="maps?title=<?php echo $_GET['title'] ?>">maps</a>
#                         ^^^^

编辑:还有一个<?=开场代码(而不是<?<?php)会自动调用echo(例如<?= $_GET['title'] ?>)但some people find them bad。特别是像Symfony2这样的现代框架建议禁用short_open_tags。