0
下面的代碼顯示
"Array ([MAX_FILE_SIZE] => 1000000 [caption] => banner)"
當我做了的print_r($ _ POST)。我看不出我做錯了什麼。
<?php
$zfilename='File name';
$zcaption='Caption';
?>
<form action="test.php" enctype="multipart/form-data" method="post">
<input type="hidden" name="MAX_FILE_SIZE" value="1000000"/>
<p><label for="filename"><?php echo"$zfilename"; ?></label>
<input id="filename"
name="filename"
type="file"
placeholder="file name"
autofocus required/></p>
<p><label for="caption"><?php echo"$zcaption"; ?> </label>
<input id="caption"
name="caption"
type="text"
placeholder="caption"/></p>
<br>
<center>
<button type=submit >Submit</button>
</center>
</form>
我也試過「get」,結果也一樣。