Hello. I’m having some trouble accessing some GET variable in my url. They are in the form http://www.domain.com/page/name/?pid=value
I have something in an embed on the page like this:
<?php
$pid = $this->EE->input->get('pid');
echo $pid;
?>It doesn’t output anything. What am I doing wrong here?