EliteConf
 All Data Structures Namespaces Files Functions Variables Pages
index.php
Go to the documentation of this file.
1 <?php
2 /* @var $this AdminviewevaluationsController */
3 
11 $this->breadcrumbs=array(
12  'Adminviewevaluations',
13 );
14 ?>
15 
16 <?php
17 
18 $paperid = $_GET['paperid'];
19 
21 
22 $name = mysql_query("SELECT * FROM paper WHERE id='$paperid'");
23 
24  if(mysql_num_rows($name)!=0)
25  {
26  while($row = mysql_fetch_array($name))
27  {
28 
29  $papername = $row['paper_name'];
30  echo "<h3>Evaluations of " . $papername . "</h3>";
31  }
32 
33  }
34  else echo "There no such paper.<br><br>";
35 
36 
37 
38 $this->view_evaluation($paperid);
39 
40 
41 echo "<br><h3>Comments on This Paper</h3>";
42 $this->comments($paperid);
43 
44 
45 ?>