Home >Backend Development >PHP Tutorial >How does yaf receive routing parameters?
/.../list?id=12 How to get id=12
/.../list?id=12 How to get id=12
Yaf_Registry::get()
Read more manual registry
<code>$controller->getQuery('id');</code>
$_GET['id']
has $this->getRequest()->getQuery('id','');