5
我想知道我們如何能夠添加屬性的笨添加屬性form_open_multipart
到file_upload現在我使用form_open_multipart('controller');
但我想一個id屬性添加到它。
任何幫助讚賞謝謝!
我想知道我們如何能夠添加屬性的笨添加屬性form_open_multipart
到file_upload現在我使用form_open_multipart('controller');
但我想一個id屬性添加到它。
任何幫助讚賞謝謝!
form_open_multipart()
此功能是完全相同 到form_open()標籤,所不同 在於它增加了一個多屬性, 這是必要的,如果你願意如 使用表單上傳文件。
因此,您可以像使用form_open()
一樣使用它。例如:
form_open_multipart('controller', 'id="my_id"');
或者:
form_open_multipart('controller', array('id' => 'my_id'));