以下のコードを含む小さなフォームが 1 ページにあり、
<div class="postcomment">
<form id="comments" action="insertcomment.php" method="POST" enctype="multipart/form-data">
Comment: <input type="text" name="comment" id="commentfield">
<input type="submit" name="submit" value="Post comment" class="button">
<br>
<input type="hidden" name="MAX_FILE_SIZE" value="1048576" />
Image: <input type="file" name="image" />
<br>
</div>
ユーザーが画像を参照して追加すると、フォームは以下のinsertcomment.phpコードに移動します
$target_path = "images/";
$file_path = $target_path . basename( $_FILES['uploadedfile']['name']);
if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $file_path)) {
echo "The file ". basename( $_FILES['uploadedfile']['name']). " has been uploaded";
} else{
echo "There was an error uploading the file, please try again!";
}
何らかの理由でエラーが表示され、画像ディレクトリに表示されない場合、エラーは次のとおりです。解析エラー:構文エラー、18行目の/homepages/21/d417005970/htdocs/rk8479/htdocs/insertcomment.phpの予期しないT_IF