EliteConf
 All Data Structures Namespaces Files Functions Variables Pages
index.php
Go to the documentation of this file.
1 <?php
2 /* @var $this Interests_confirmation_functionController */
3 
11 $this->breadcrumbs=array(
12  'Interests Confirmation Function',
13 );
14 ?>
15 
16 
17 <?php
18 
19 
20 if($_GET['new']!=0)
21 {
22 
23 if(isset($_POST["topicid"]))
24  {
25  $subtopicid=$_POST["topicid"];
26 
27  foreach($subtopicid as $subtopicid)
28  {
29 
30  $this->new_confirm($subtopicid);
31 
32 }}}
33 else
34 {
35 if(isset($_POST["topicid"]))
36  {
37  $subtopicid=$_POST["topicid"];
38 
39  foreach($subtopicid as $subtopicid)
40  {
41 
42  $this->existing_confirm($subtopicid);
43 
44 }}}
45 
46 ?>
47 
48 <?php
49 echo "<a href=\" ./index.php?r=interests_confirmation/index\">Go Back To The Interest Confirmation Page</a>";
50 ?>