Skip to content

Instantly share code, notes, and snippets.

@codeforfun-jp
Created August 23, 2022 09:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codeforfun-jp/631ada9e8d80e7f74b51e9fcf30d3930 to your computer and use it in GitHub Desktop.
Save codeforfun-jp/631ada9e8d80e7f74b51e9fcf30d3930 to your computer and use it in GitHub Desktop.
Save Image File with PHP & MySQL - #7-2
<div class="col-md-4 pt-4 pl-4">
<form method="post" enctype="multipart/form-data">
<div class="form-group">
<label>画像を選択</label>
<input type="file" name="image" accept=".jpg,.jpeg,.png" required>
<?php if ($err_msg != ''): ?>
<div class="invalid-feedback d-block"><?= $err_msg; ?></div>
<?php endif; ?>
</div>
<button type="submit" class="btn btn-primary">保存</button>
</form>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment