提交相当于 WML 的表单
我正在用 PHP 玩一下 WML,然后我想知道 WML 1.0 上的等效项是什么:
<form action="upload_file.php" method="post">
<label for="file">File:</label><br />
<input type="file" name="file" id="file" /><br />
<input type="submit" name="submit" value="Submit" />
</form>
I'm playing a little bit with WML with PHP, then I want to know what is the equivalent of this on WML 1.0:
<form action="upload_file.php" method="post">
<label for="file">File:</label><br />
<input type="file" name="file" id="file" /><br />
<input type="submit" name="submit" value="Submit" />
</form>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
WML 1.0 大约 10 年前已被弃用,但我将通过查看 www.wapforum.org/what/technical/wml-30-apr-98.pdf
但请注意,并非所有设备都支持“文件”输入类型,所以这实际上起作用的机会很小。
WML 1.0 is deprecated about 10 years ago, but I will answer this by looking at the spec for wml1.0 from www.wapforum.org/what/technical/wml-30-apr-98.pdf
But do note that the "file" input type isn't supported by all devices, so the chances of this actually working is quite slim.