Hello,
Im a beginner with Phalcon. When i use findFirst with a value wich is in the database everything is okay but when i choose a value like test the view will not be loaded.
$Key = (trim($this->request->get("key")));
$event = Event::findFirst(
[
"conditions" => " passkey =' " . $Key . " ' ",
]
);
Do you have any idea.
When I search for id's the Problem does not occur like in this example.
$event = Event::findFirst(
[
"conditions" => " id = " . $Key,
]
);