method
multipart_form
v1_8_6_287 -
Show latest stable
-
0 notes -
Class: CGI::HtmlExtension
- 1_8_6_287 (0)
- 1_8_7_72 (0)
- 1_8_7_330 (0)
- 1_9_1_378
- 1_9_2_180
- 1_9_3_125 (-2)
- 1_9_3_392 (0)
- What's this?
multipart_form(action = nil, enctype = "multipart/form-data")
public
Generate a Form element with multipart encoding as a String.
Multipart encoding is used for forms that include file uploads.
action is the action to perform. enctype is the encoding type, which defaults to "multipart/form-data".
Alternatively, the attributes can be specified as a hash.
multipart_form{ "string" } # <FORM METHOD="post" ENCTYPE="multipart/form-data">string</FORM> multipart_form("url") { "string" } # <FORM METHOD="post" ACTION="url" ENCTYPE="multipart/form-data">string</FORM>


