PHP Classes

File: config.php

Recommend this page to a friend!
  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: 15 years ago
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"
           
);
?>