Skip to content

Commit

Permalink
Updated to use 'htmlfooter' function in common.php
Browse files Browse the repository at this point in the history
git-svn-id: file:///Users/Shitiz/Downloads/lssvn/trunk/unstable@162 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
jcleeland committed Mar 30, 2003
1 parent f189c31 commit 14cbfb5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 22 deletions.
4 changes: 2 additions & 2 deletions admin/admin.php
Expand Up @@ -120,7 +120,7 @@
echo "$newsurvey\n";
echo "\t\t</td>\n";
echo "\t</tr>\n";
echo $htmlfooter;
echo htmlfooter("instructions.html");
exit;
}

Expand All @@ -141,5 +141,5 @@
echo "\t</tr>\n";
echo "</table>\n";

echo $htmlfooter;
echo htmlfooter("instructions.html", "Using PHPSurveyors Admin Script");
?>
12 changes: 3 additions & 9 deletions admin/browse.php
Expand Up @@ -413,14 +413,8 @@
}
}
echo "&nbsp;";
echo "<table width='100%' align='center' bgcolor='#000080'>\n";
echo "\t<tr>\n";
echo "\t\t<td align='center'>\n";
echo "\t\t\t<img src='help.gif' align='left' alt='Help for Tokens' onClick=\"window.open('instructions.html#browse', '_blank')\">\n";
echo "\t\t\t<img src='help.gif' align='right' alt='Help for Tokens' onClick=\"window.open('instructions.html#browse', '_blank')\">\n";
echo "\t\t\t<a href='http://phpsurveyor.sourceforge.net/' target='_blank'><img src='phpsurveyor_logo.jpg' border='0'></a>\n";
echo "\t\t</td>\n";
echo "\t</tr>\n";
echo "</table>\n";
echo htmlfooter("instructions.html#browse", "Using PHPSurveyors Browse Function");

echo "</body>\n</html>\n";

?>
4 changes: 2 additions & 2 deletions admin/statistics.php
Expand Up @@ -266,8 +266,6 @@
echo "\n\t\t\t\t</td></tr>\n\t\t\t</table>\n";
echo "\t\t</td></tr>\n";
echo "\t\t<tr><td align='center' bgcolor='#CCCCCC'>\n\t\t\t<br />\n";
echo "\t\t\t<img src='help.gif' align='left' alt='Statistics Help' onClick=\"window.open('instructions.html#statistics', '_blank')\">\n";
echo "\t\t\t<img src='help.gif' align='right' alt='Statistics Help' onClick=\"window.open('instructions.html#statistics', '_blank')\">\n";
echo "\t\t\t<input $btstyle type='submit' value='View Stats'>\n";
echo "\t\t\t<input $btstyle type='button' value='Clear' onClick=\"window.open('statistics.php?sid=$sid', '_top')\">\n";
echo "\t\t<br />&nbsp;\n\t\t</td></tr>\n";
Expand Down Expand Up @@ -511,4 +509,6 @@
}
echo "</table>\n<br />";
}
echo "&nbsp;";
echo htmlfooter("instructions.html#statistics", "Using PHPSurveyors Statistics Function");
?>
10 changes: 1 addition & 9 deletions admin/tokens.php
Expand Up @@ -779,15 +779,7 @@
//echo "ACTION: $action (POST: {$_POST['action']})<br />THEFILE: $the_file (FILES: {$_FILES['the_file']['tmp_name']})<br />THEFILENAME: $the_file_name (FILES: {$_FILES['the_file']['name']})";
echo "</center>\n";
echo "&nbsp;";
echo "<table width='100%' align='center' bgcolor='#000080'>\n";
echo "\t<tr>\n";
echo "\t\t<td align='center'>\n";
echo "\t\t\t<img src='help.gif' align='left' alt='Help for Tokens' onClick=\"window.open('instructions.html#tokens', '_blank')\">\n";
echo "\t\t\t<img src='help.gif' align='right' alt='Help for Tokens' onClick=\"window.open('instructions.html#tokens', '_blank')\">\n";
echo "\t\t\t<a href='http://phpsurveyor.sourceforge.net/' target='_blank'><img src='phpsurveyor_logo.jpg' border='0'></a>\n";
echo "\t\t</td>\n";
echo "\t</tr>\n";
echo "</table>\n";
echo htmlfooter("instructions.html#tokens", "Using PHPSurveyors Tokens Function");
echo "</body>\n</html>";


Expand Down

0 comments on commit 14cbfb5

Please sign in to comment.