1. Go to this page and download the library: Download devhammed/server-actions library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
devhammed / server-actions example snippets
// File: /public/index.php
// File: /public/index.php
rns\JsonFileServerEntry;
use function DevHammed\ServerActions\useServer;
useServer()
->withServerActionsUrl('/server-actions.php')
->withServerEntry(
new JsonFileServerEntry(
__DIR__ . '/server-actions.json',
),
);
// Other logic to
// File: /public/server-actions.php
ileServerEntry;
use function DevHammed\ServerActions\useServer;
useServer()
->withServerActionsUrl('/server-actions.php')
->withServerEntry(
new JsonFileServerEntry(
__DIR__ . '/server-actions.json',
),
)
->run();
// File: /views/my-form.php
use function DevHammed\ServerActions\useServer;