|
|
 |
FORMS |
Welcome! This program stores all information submitted by your website visitors. To view submissions
for a particular form just click on the SUBMISSIONS link below, or see the leftmost navigation
menu for other options.
0)
{
$display_settings = false;
// if there's at least one option to show on the settings page, display the settings page link
if ($_SESSION["ft"]["may_take_forms_offline"] == "yes" || $_SESSION["ft"]["may_change_email_settings"] == "yes" ||
$_SESSION["ft"]["may_change_num_submissions"] == "yes" || $_SESSION["ft"]["may_change_default_printer_friendly_format"] == "yes" ||
$_SESSION["ft"]["may_change_default_hide_empty_fields"] == "yes")
$display_settings = true;
echo "
| Form |
Status |
SUBMISSIONS | ";
if ($display_settings)
echo "SETTINGS | \n";
echo " ";
for ($i=0; $iOnline";
if ($form['is_active'] == "no")
$status = "Offline";
echo "
| {$form['form_name']} |
$status |
";
if ($form['is_complete'] == "yes")
echo "(" . $_SESSION["ft"]["form_{$form_id}_num_submissions"] . ") VIEW";
echo " | \n";
if ($display_settings)
echo "SETTINGS | \n";
echo " ";
}
echo " ";
}
else
{
echo "You currently have no forms available for review.";
}
?>
|