Skip to content

Instantly share code, notes, and snippets.

View dion-zebua's full-sized avatar

Dion Elson Famahato Zebua dion-zebua

View GitHub Profile
@tutweb
tutweb / contact-form-email.php
Last active May 8, 2022 08:37
Contoh form kontak dengan PHP yang terkirim ke email
<?php
$statusMsg = '';
$msgClass = '';
if(isset($_POST['submit'])){
// Get the submitted form data
$email = $_POST['email'];
$name = $_POST['name'];
$subject = $_POST['subject'];
$message = $_POST['message'];