我正在设计类似Facebook的消息系统,但在消息中的图片上传存在问题。文字输入。
我该怎么做呢。我是使用输入还是div
?
答案 0 :(得分:0)
尝试
<html>
<body>
<form action="upload_file.php" method="post"
enctype="multipart/form-data">
<label for="file">Filename:</label>
<input type="file" name="file" id="file" />
<br />
<input type="submit" name="submit" value="Submit" />
</form>
</body>
</html>