1
1
mirror of https://github.com/neosubhamoy/neosubhamoy-portfolio.git synced 2025-12-19 19:23:02 +05:30
Files
neosubhamoy-portfolio/htdocs/core/handle_search.php

11 lines
257 B
PHP

<?php
require 'connection.php';
require 'query_functions.php';
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
if (isset($_POST['keyword'])) {
$keyword = $_POST['keyword'];
echo json_encode(array("keyword-recived" => $keyword));
}
}
?>