17488 Posts in 4473 Topics by 1978 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 877 Views |
-
multivalue array with TextField

17 October 2008 at 11:36pm
I have this functione that show me form. I have need of 3 form, How can iterate TextForm value ($name, $title, $value)?
function BrowserPollForm() {
// Create fields
$fields = new FieldSet(
new TextField(
$name = "name",
$title = "numero di notti",
$value = "1"
)
); -
Re: multivalue array with TextField

19 October 2008 at 3:51pm
What are you trying to do? Get 3 text fields? You should just do
$fields = new FieldSet(
new TextField('Field1'),
new TextField('Field2'),
new TextField('Field3')
);
| 877 Views | ||
|
Page:
1
|
Go to Top |


