-2
$this->requestAction("/survey/responsethereuser/qid:$qid,uid:$uid,sid:$sid");

In my controller

function responsethereuser($qid = null, $uid=null, $sid=null)

It is showing on taking value of qid

$qid=1,uid:3,sid:1

How to get all the parameter values correctly?

zzlalani
  • 22,960
  • 16
  • 44
  • 73

1 Answers1

0

try this

$this->requestAction("/survey/responsethereuser/", array('qid'=>$qid, 'uid'=>$uid, 'sid'=>$sid));
zzlalani
  • 22,960
  • 16
  • 44
  • 73