Submit Form Equivalent To WML
Posted
by Nathan Campos
on Stack Overflow
See other posts from Stack Overflow
or by Nathan Campos
Published on 2010-05-04T01:34:17Z
Indexed on
2010/05/04
1:38 UTC
Read the original article
Hit count: 421
I'm playing a little bit with WML with PHP, then I want to know what is the equivalent of this on WML:
<form action="upload_file.php" method="post"enctype="multipart/form-data">
<label for="file">File:</label><br />
<input type="file" name="file" id="file" /><br />
<input type="submit" name="submit" value="Submit" />
</form>
© Stack Overflow or respective owner