require_once() for including files in /include so we can have include/*.php files include their own dependencies rather than figuring out that to include A.php we need to include B.php
12 lines
234 B
PHP
12 lines
234 B
PHP
<?php
|
|
/*************************************/
|
|
/* code to View and resubmit Apps */
|
|
/*************************************/
|
|
|
|
require("path.php");
|
|
require(BASE."include/incl.php");
|
|
|
|
util_redirect_and_exit(BASE."appsubmit.php");
|
|
|
|
?>
|