PHP Classes

File: contact-us-php/includes/db.php

Recommend this page to a friend!
  Packages of ganesh kavhar   Contact Us Page With Database in PHP   contact-us-php/includes/db.php   Download  
File: contact-us-php/includes/db.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
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: 281 bytes
 

Contents

Class file image Download
<?php
$host
= "localhost";
$user = "root"; // Change this if needed
$pass = ""; // Set your MySQL password
$dbname = "your_database_name";

$conn = new mysqli($host, $user, $pass, $dbname);
if (
$conn->connect_error) {
    die(
"Connection failed: " . $conn->connect_error);
}
?>