When you are working with CakePHP framework and you try to retrieve the variables which have been sent through GET or POST.
For POST variables you have
For $_POST['key'] we have
$this->request->data('key');
For GET variables you have
For $_GET['kpa'] we have
$this->request->query('kpa');
No comments:
Post a Comment