Login   Register  
PHP Classes
elePHPant
Icontem

File: config.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Er. Rochak Chauhan  >  PHP Scroller  >  config.php  >  Download  
File: config.php
Role: Configuration script
Content type: text/plain
Description: Config file
Class: PHP Scroller
Display text messages scrolling vertically
Author: By
Last change:
Date: 2008-12-27 22:36
Size: 479 bytes
 

Contents

Class file image Download
<?php
define
("BACKGROUND_COLOR","#f0ffff");
define("FONT_COLOR","#000000");
define("BORDER_COLOR","#0000ff");

define("FONT_FAMILY","arial,verdana");
define("FONT_SIZE","14px");

// Set the array with messages/content of the scroller
$messages=array(
            
"This is the a sample text number 1",
            
"This is the a sample text number 2",
            
"This is the a sample text number 3",
            
"This is the a sample text number 4",
            
"This is the a sample text number 5"
            
);
?>