PHP Classes

File: db.php

Recommend this page to a friend!
  Classes of Nuno Tiago   PHP MySQL Quiz class   db.php   Download  
File: db.php
Role: Configuration script
Content type: text/plain
Description: Database config
Class: PHP MySQL Quiz class
Manage questions and user answers stored in MySQL
Author: By
Last change:
Date: 10 years ago
Size: 116 bytes
 

Contents

Class file image Download
<?php

define
('server','localhost');
define('user', 'root');
define('pass', '1234');
define('database','test');


?>