大家好! ?
經過漫長的一年,我終於在 dev.to 上發布了一篇文章!
我建立了一個使用 PHP 和 Supabase 建構的簡單評論系統。這個專案的靈感來自 @mcnaveen 的 Supacomments dev - 使用 Sveltejs 和 Supabase 的超快速評論系統
這個專案是完全免費且開源的!請隨意分叉 GitHub 儲存庫並根據您的需求進行自訂。 ?
使用 PHP 和 Supabase 建構的簡單評論系統。
<span>-- Create the table with necessary fields</span> CREATE TABLE user_comments ( id SERIAL PRIMARY KEY, <span>-- Auto-incrementing primary key</span> name VARCHAR(255) NOT NULL, <span>-- Name of the user (max length 255)</span> comment TEXT NOT NULL, <span>-- Comment field to store user input</span> created_at TIMESTAMP WITH TIME ZONE DEFAULT CURRENT_TIMESTAMP <span>-- Timestamp with timezone</span> );
<span>## Supabase</span> supabaseUrl=https://example.supabase.co apiKey= pkey= table=comments <span>## Cloudflare turnstile</span> secretKey=…
以上是PHP Supabase 評論的詳細內容。更多資訊請關注PHP中文網其他相關文章!