ENXF NET
Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
- Joined
- Nov 13, 2018
- Messages
- 26,072
- Points
- 823
Reputation:
So I've an entity set up like this:
PHP:
To test it, I keep both the fields empty and hit the submit button. I get the following output:
A couple of things are...
Read more
Continue reading...
PHP:
Code:
$structure->columns = [
'sys_id' => ['type' => self::UINT, 'autoIncrement' => true],
'title' => ['type' => self::STR, 'maxLength' => 40, 'required' => 'asp_fb_req_title'],
'catg' => ['type' => self::STR, 'required' => 'asp_fb_req_catg', 'allowedValues' => array_keys($validCategories)],
];
To test it, I keep both the fields empty and hit the submit button. I get the following output:
A couple of things are...
Read more
Continue reading...