Read-later script to save links for later use How to test it: > Place index.php and database.db in the same folder > open your terminal and run > /path/to/bin/php -S localhost:9999 index.php > open your web browser and go to localhost:9999 ---- If no description is provided, only the URL will be shown. If description is provided, only the description will be shown by default. ---- More settings in Edit menu ---- This script uses GET instead of POST, because I can manipulate GET in links. Otherwise I would have to make buttons everywhere to send POST to the server. ---- Category and Date does nothing. ---- Tested on: Debian GNU/Linux 10 (buster) PHP 5.6.11 SQLite3 3.27.2 2019-02-25 Falkon browser 3.0.0 Lynx Version 2.8.9rel.1 (08 Jul 2018) Shema for a default sqlite3 table: CREATE TABLE links (ID INTEGER primary key AUTOINCREMENT, URL text NOT NULL, DESCRIPTION text, STATUS text NOT NULL, IMPORTANT bool NOT_NULL, SHOWBOTH bool NOT_NULL, CATEGORY text NOT NULL, DATE char(10)); This little PHP file has been written by Sebastian Skibinski in GNU Nano 3.2 Initial idea: 2022-01-07 Last official modification: 2022-01-08 Thanks