PHP Classes

File: msgbox_example.php

Recommend this page to a friend!
  Classes of Vedanta Barooah   Message Box   msgbox_example.php   Download  
File: msgbox_example.php
Role: Example script
Content type: text/plain
Description: Simple Example
Class: Message Box
Generate Windows style message boxes in HTML
Author: By
Last change:
Date: 19 years ago
Size: 249 bytes
 

Contents

Class file image Download
<?
include("msgbox.inc.php");
$a=new msgBox("This is just a Message ","OKCancel","Jack Said!" );
// define the links
$links=array("ok.php","cancel.php");
// make the links
$a->makeLinks($links);
// draw the message box
$a->showMsg();
?>