Skip to content

Instantly share code, notes, and snippets.

@nixon1333
Created August 27, 2014 05:54
Show Gist options
  • Save nixon1333/68aadff2914f33b5a312 to your computer and use it in GitHub Desktop.
Save nixon1333/68aadff2914f33b5a312 to your computer and use it in GitHub Desktop.
grab the post request in phalcon framework, controller
if ($this->request->isPost() == true) {
// Access POST data
$customerName = $this->request->getPost("name");
$customerBorn = $this->request->getPost("born");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment