PHP Classes

File: config.php

Recommend this page to a friend!
  Classes of Subin Siby   Francium PHP 5 Star Rating System   config.php   Download  
File: config.php
Role: Configuration script
Content type: text/plain
Description: The database configuration is in this file.
Class: Francium PHP 5 Star Rating System
Record star ratings of items in a MySQL with AJAX
Author: By
Last change:
Date: 8 years ago
Size: 255 bytes
 

Contents

Class file image Download
<?php
require_once __DIR__ . "/Fr.star.php";

$star = new \Fr\Star(array(
 
"db" => array(
   
"host" => "localhost",
   
"port" => 3306,
   
"username" => "root",
   
"password" => "backstreetboys",
   
"name" => "test",
   
"table" => "Fr_star"
 
)
));