Defined constants in index.php for various paths (e.g., includes, sections, etc.). Will employ the use of these across the application - this commit begins the process.
11 lines
286 B
PHP
11 lines
286 B
PHP
<?php if ($row_log['brewSpecialProcedure'] != "" ) { ?>
|
|
<div class="headerContent">Special Procedures</div>
|
|
<div class="dataContainer">
|
|
<table class="dataTable">
|
|
<tr>
|
|
<td valign="top"><?php echo $row_log['brewSpecialProcedure']; ?></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<?php } ?>
|