123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <?php
- require_once("apps.inc");
- commonHeader('Add an Application', false);
- appHeader();
- print("<h1>Add a PHPGTK Application</h1>");
- if( $action == "add" ) {
- print('Submissions have been disabled until the form is safe from spammers.');
- }else {
- $form_app = (object) 0;
- if( !empty($cat_id) ) {
- $form_app->cat_id = $cat_id;
- }
- $form_url = "add.php";
- $form_action = "add";
- $form_submit = "Add";
- include_once("form.php");
- }
- appFooter();
- commonFooter(false);
- ?>
|