Hi,
I have added a help function "reports_help" to reports.php in order to print a simple help text. Here is it, if you want to add it to your code:
Code:
draw_actions_dropdown($ds_actions);
print "</form>\n";
reports_help();
}
function reports_help() {
echo "
<table width='100%' cellspacing='0' cellpadding='0'>
<tr>
<td style='padding: 10px; margin: 4px;'>
<ul>
<li> For <strong>Adding</strong> a new report click 'Add'.</li>
<li> For <strong>Editing</strong> and <strong>Previewing</strong> the
content of existing reports click the report 'Name'.</li>
<li> For <strong>Editing</strong> the report recipient data and report name
click the <img src='images/edit.gif'> symbol.</li>
</ul>
</td>
</tr>
<tr>
<td style='padding: 10px; margin: 4px;'>
<strong>Note: Reports are owned and shared by all users who have report
permissions. So, take care that you don't delete reports from other
users.</strong>
</td>
</tr>
</table>";
}