I have a simple form with a textarea named "message". When loading the page I use the following syntax:
if (!isset($_REQUEST['message'])) {
// show form
} else {
// show result of form
}
But the "else" case never happens?!! All this after upgrading to 5 from some 4.x version.
Any ideas??