PHP Classes

File: ezSL/dbConf.inc

Recommend this page to a friend!
  Classes of S. M. ARIFUL ISLAM   ezSL   ezSL/dbConf.inc   Download  
File: ezSL/dbConf.inc
Role: Configuration script
Content type: text/plain
Description: Database configuration file
Class: ezSL
Suggest words to complete text inputs using AJAX
Author: By
Last change:
Date: 16 years ago
Size: 175 bytes
 

Contents

Class file image Download
<?
    $host
= "localhost";
   
$user = "root";
   
$pass = "";
   
$database = "dictionary";

   
$link = mysql_pconnect($host, $user, $pass);
   
mysql_select_db($database, $link);
?>