EliteConf
 All Data Structures Namespaces Files Functions Variables Pages
index.php
Go to the documentation of this file.
1 <?php
2 /* @var $this Interests_request_functionController */
3 
10 $this->breadcrumbs=array(
11  'Interests Request Function',
12 );
13 ?>
14 
15 <?php
16 
17 if($_POST['type']==2)
18 {
19  $top = $_POST['topic'];
20  $subtop = $_POST['subtopic'];
21 
22 $this->newinterest();
23 
24 echo "Subtopic " . $subtop . " Added For Topic " . $top;
25 echo "<br><br><a href=./index.php?r=interests_request/index>Go Back To Interest Requesting Page</a><br/><br/>";
26 }
27 else
28 {
29 
30  $top = $_POST['topic'];
31  $subtop = $_POST['subtopic2'];
32 
33  $this->newinterest2();
34 
35  echo "Subtopic " . $subtop . " Added For Topic " . $top;
36  echo "<br><br><a href=./index.php?r=interests_request/index>Go Back To Interest Requesting Page</a><br/><br/>";
37 
38 }
39 ?>