如何以一种形式使用文件输入和文本输入
感谢期待
答案 0 :(得分:1)
我想您肯定是html的新手
这是一个样本
<form action="upload.php" method="post" enctype="multipart/form-data">
<label> Name </label>
<input type="text" name="name">
Select image to upload:
<input type="file" name="fileToUpload" id="fileToUpload">
<input type="submit" value="Upload Image" name="submit">
</form>