EliteConf
 All Data Structures Namespaces Files Functions Variables Pages
index.php
Go to the documentation of this file.
1 <?php
2 /* @var $this ParticipateController */
3 
10 $this->breadcrumbs=array(
11  'Participate',
12 );
13 
14 
15 
16 ?>
17 <h2><?php echo "Request Sent"; ?></h2>
18 
19 
20 <?php
21 
22 $confid = $_POST["id"];
23 $type = $_POST["type"];
24 
25 
26 
27 $this->request($confid, $type);
28 
29 echo "<br/>";
30 
31 echo "<a href=\" ./index.php?r=conference/view&id=$confid\">" . "Go Back to the Conference Viewing Page" . "</a>";
32 
33 
34 ?>