1
1
mirror of https://github.com/neosubhamoy/neosubhamoy-portfolio.git synced 2025-12-19 17:03:01 +05:30
Files
neosubhamoy-portfolio/htdocs/core/write_dataset.php

13 lines
420 B
PHP

<?php
function write_dataset($conn) {
$data = array(
'email' => fetch_quick_action_link($conn, "Send Email"),
'chat' => fetch_quick_action_link($conn, "Chat Online"),
'sources' => fetch_quick_action_link($conn, "Source Code"),
);
$json_data = json_encode($data, JSON_PRETTY_PRINT);
$json_file_path = 'assets/dataset.json';
file_put_contents($json_file_path, $json_data);
}
?>