Skip to content

Instantly share code, notes, and snippets.

View dnyaneshdeshpande2772's full-sized avatar

dnyaneshdeshpande2772

View GitHub Profile
@mikestratton
mikestratton / save2JSON.php
Last active November 23, 2022 00:15
Save form data in JSON file.
<?php
if(isset($_POST['submit'])) {
$file = "data.json";
$arr = array(
'name' => $_POST['name'],
'email' => $_POST['email'],
'phone' => $_POST['cell'],
'birthday' => $_POST['dob'],
'years' => $_POST['study']
);