PHP Classes

File: include/db.php

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   Simple PHP Blog Script   include/db.php   Download  
File: include/db.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Simple PHP Blog Script
Manage blog articles stored in a MySQL database
Author: By
Last change:
Date: 1 year ago
Size: 177 bytes
 

Contents

Class file image Download
<?php
$localhost
= "localhost";
$username = "root";
$password = "";
$database = "blog";

$con = mysqli_connect($localhost, $username, $password, $database) or die();

?>