33 lines
697 B
PHP
Executable File
33 lines
697 B
PHP
Executable File
<?php
|
|
#################################################################################
|
|
# #
|
|
# written by benjamin ramey #
|
|
# bsr@rameydesign.net #
|
|
# #
|
|
# This file contains: #
|
|
# HTML to display error messages #
|
|
# #
|
|
#################################################################################
|
|
|
|
global $M_MESSAGES;
|
|
|
|
if(!empty($M_MESSAGES))
|
|
{
|
|
print "
|
|
<!--MESSAGES-->
|
|
<div id='messages'>
|
|
";
|
|
|
|
$msg_counter = 0;
|
|
foreach($M_MESSAGES as $mesg)
|
|
{
|
|
$msg_counter++;
|
|
print "$msg_counter: $mesg<br />";
|
|
}
|
|
|
|
print "
|
|
</div>
|
|
<!--END MESSAGES-->";
|
|
}
|
|
|
|
?>
|