PHP Classes

File: examples/dbclass.connectinfo.i.php

Recommend this page to a friend!
  Classes of Barton Phillips   MySQL Slideshow   ???   Download  
File: examples/???
Role: Configuration script
Content type: text/plain
Description: Configuration script
Class: MySQL Slideshow
Present slideshow from images listed in a database
Author: By
Last change: Update of examples/dbclass.connectinfo.i.php
Date: 11 days ago
Size: 827 bytes
 

Contents

Class file image Download
<?php
// This file can be place in a directory that is not in the Apache path for extra security.
$Host = "localhost:3306"; // the host. This is probably OK unless you are using a remote host
$User = "barton"; //"YourUserName"; // Change this to your MySql user name
$Password = "6706424"; //"YourPassword"; // Change this to you MySql password
//
// If Database is NOT 'mysqlslideshow' add $Database
// If the table name is NOT 'mysqlslidshow' add $Table
// If the Database and Table are 'mysqlslideshow' don't add the variables as they are defaulted
// to 'mysqlslideshow'
// OR set the variable to null.
//
$Database = "barton"; // if database name is not 'mysqlslideshow'
//$Database = null; // if the databasse name is not 'mysqlslideshow' add name
//$Table = null; // if the table name is not 'mysqlslideshow' add name