PHP Classes

File: php/includes/connect-db.php

Recommend this page to a friend!
  Classes of Ann   Purp Project   php/includes/connect-db.php   Download  
File: php/includes/connect-db.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Purp Project
Application to manage photo albums
Author: By
Last change: Update of php/includes/connect-db.php
Date: 1 year ago
Size: 142 bytes
 

Contents

Class file image Download
<?php
    $connect
= mysqli_connect('localhost', 'root','', 'purp_project');
    if(!
$connect){
        die(
'Connection error');
    }
?>