EliteConf
 All Data Structures Namespaces Files Functions Variables Pages
index.php
Go to the documentation of this file.
1 <?php
2 /* @var $this Interests_selectionController */
3 
10 $this->breadcrumbs=array(
11  'Interests Selection',
12 );
13 ?>
14 
15 
16 
17 <?php
18 
20 
21 $i=0;
22 
23 if(isset($_POST["knowledge"]))
24  {
25 
26 
27  if(isset($_POST['topicid']))
28  {
29  foreach($_POST['topicid'] as $topicid)
30  {
31 
32  $this->selectfunction($topicid);
33  if($i==0) echo "Selection Successful";
34  $i++;
35  }}}
36 
37 else echo "No Knowledge Degree Selected";
38 
39 echo "<br><br><a href=\" ./index.php?r=interests/index\">" . "Go Back To The Selection Page" . "</a><br><br>";
40 
41 ?>