Hi... I'm trying to get familiar with the framework by working through the tutorials. Got everything compiled and installed and started working through the first example. Everything works fine up until the save record. Save doesn't seem to be working correctly and I can't figure out why..
tutorial I've followed to the letter: https://docs.phalcon.io/en/latest/reference/tutorial.html#checking-your-installation
In the last step, I enter some data in the two text fields and get the following: Sorry, the following problems were generated: name is required email is required
So I added an echo print_r($_POST); in the controller/registerAction and end up with this output: Array ( [name] => test [email] => test ) 1Sorry, the following problems were generated: name is required email is required
I removed the "not null" requirement and it saves an empty record... regardless of what is in the $_POST array Array ( [name] => test [email] => test ) 1Thanks for register!
Any idea on how I can start tracking down the issue?