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