4 Commits

Author SHA1 Message Date
f83b772c4f Update input-tabular-input.md (#20100)
Upper case title, as used in other pages
2024-01-11 19:27:26 +03:00
5eabb93482 Fix docs: input tabular data, remove unnecessary "-1" (#19489)
Before the change, with this input:
```
$_POST = [
    'Setting' => [
        0 => ['value' => 'value0'],
        1 => ['value' => 'value1'],
    ]
];
```
contents of $settings would be created as follows:
```
$settings = [
    Setting(value='value0'),
];
```
after the change it will be:
```
$settings = [
    Setting(value='value0'),
    Setting(value='value1'),
];
```
2022-07-28 23:34:10 +03:00
1789b28d76 Extend examples in guide/input-tabular-input.md (#19278) 2022-04-07 00:05:17 +04:00
0e84842789 adjust form guide structure
fixes #7042
2015-01-27 19:16:20 +01:00