K_Search
Webmaster Keyword - Key Phrase Search
K0NxT3D 2024

Step 1: Configuration

Edit config.php with your MySQL User Information.

Step 2: MySQL Database Creation

-- Create the database
CREATE DATABASE K_Search;

-- Use the database
USE K_Search;

-- Create the table with specified columns and prevent duplicate Keywords
CREATE TABLE Search_Terms (
    ID INT AUTO_INCREMENT PRIMARY KEY,  -- Column 1: Incremental ID
    Keywords VARCHAR(255) UNIQUE        -- Column 2: Keywords column with UNIQUE constraint to prevent duplicates
);


-- Optional if you're creating from root or an account with GRANT privileges.
-- Grant full privileges to YOUR-USERNAME on the K_Search database
GRANT ALL PRIVILEGES ON K_Search.* TO 'YOUR-USERNAME'@'localhost';

-- Flush privileges to apply the changes
FLUSH PRIVILEGES;


Step 3: Data Entry

Navigate to the installation url and enter your Search Terms - Single Keywords
or your Target Key Phrases. Use a comma between individual keywords or phrases.

That's It.
Enjoy!

K0NxT3D
http://seaverns.com/
