blob: 11fda90432d308de258ee6fcc504b7e026783808 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<%= include('header', 'Information updated successfully' ) %>
<%=
if ($error) {
$OUT = $error;
}
else {
$OUT = '<FONT SIZE=4>Information updated successfully.</FONT>';
}
%>
<%= include('footer') %>
|