PHP Classes

File: SQL File

Recommend this page to a friend!
  Packages of ganesh kavhar   Contact Us Page With Database in PHP   contact-us-php/messages.sql   Download  
File: contact-us-php/messages.sql
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Contact Us Page With Database in PHP
Show and process a contact form using a database
Author: By
Last change:
Date: 8 months ago
Size: 330 bytes
 

Contents

Class file image Download
-- SQL Dump for Contact Us Page CREATE DATABASE IF NOT EXISTS your_database_name; USE your_database_name; CREATE TABLE IF NOT EXISTS messages ( id INT AUTO_INCREMENT PRIMARY KEY, name VARCHAR(100) NOT NULL, email VARCHAR(100) NOT NULL, message TEXT NOT NULL, created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP );