html側
<div class="flex-2"> <?php if($_GET["compose"] == 'new'): ?> <form action="?compose=done" method="post" enctype="multipart/form-data"> 宛先 <span id="fs-s">※必須</span><br> <input type="text" name="to" size="90%" required><br> 件名<br> <input type="text" name="subject" size="90%"><br> 本文 <span id="fs-s">※必須</span><br> <textarea name="body" rows="12" cols="100%" required></textarea> </p> <input type="file" id="files" name="files[]" multiple /> <div id="caution"> ※送信できるファイルの拡張子は"gif","jpg","jpeg","png"の何れかです。<br> ※ファイル送信は最大2つまでです。3つ以上選択しても、3つ目以降は送れません。また、二つのファイルを送信する場合は、キーボードの"ctl"ボタンなどで二つ選択した状態で開いてください。</div> <output id="list"></output> <p> <input type="submit" value="送信"> </form> <?php elseif($_GET["compose"] == 'done'): ?> <p>メール送信が完了しました</p> <?php endif; ?> </div>
ここまではOK