Files
pae.co.at/other/archive/version_01/functions/flow_messages.php
2017-03-02 21:57:21 -06:00

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-->";
}
?>