Cara membuat form email berbasis PHP dengan lampiran file

Artikel ini menunjukkan Anda bagaimana untuk membuat bentuk email berbasis PHP yang mendukung file attachment. Artikel tersebut juga akan menunjukkan cara untuk memvalidasi jenis dan ukuran file upload.


Kode untuk bentuk HTML dengan file upload

<form method="POST" name="email_form_with_php"
action="php-form-action.php" enctype="multipart/form-data">


<label for='name'>Name: </label>
<input type="text" name="name" >


<label for='email'>Email: </label>
<input type="text" name="email" >


<label for='message'>Message:</label>
<textarea name="message"></textarea>


<label for='uploaded_file'>Select A File To Upload:</label>
<input type="file" name="uploaded_file">


<input type="submit" value="Submit" name='submit'>
</form>




The form will look like this:

PHP upload form

dow2nload filenya aja deh... disini

Posting Komentar

Lebih baru Lebih lama