EliteConf
 All Data Structures Namespaces Files Functions Variables Pages
index.php
Go to the documentation of this file.
1 <html>
2 <body>
3  <h3>
4 <?php
5 
17 $usid = Yii::app()->user->id;;
18 
19 
20 $papid = $_GET['va'];
21 
22 //view the properties of a conference
23 $result = mysql_query("SELECT * FROM paper WHERE id=$papid");
24 while($row = mysql_fetch_array($result))
25  {
26  echo "<B>Paper Name : </B>";
27 
28  echo $row['paper_name'];
29  echo "<br />";
30 
31  }
32 ?></h3>
33 
34 
35 
36 <form action="index.php?r=evaluatePaperFunction/index" method="post">
37 <br/>
38 <h4><b>Recommendation :</b></h4>
39 <input type="radio" name="recommendation" value="0" /> Reject<br/>
40 <input type="radio" name="recommendation" value="1" /> Probable Reject<br/>
41 <input type="radio" name="recommendation" value="2" /> Marginal Tend To Reject<br/>
42 <input type="radio" name="recommendation" value="3" /> Marginal Tend To Accept<br/>
43 <input type="radio" name="recommendation" value="4" /> Probable Accept<br/>
44 <input type="radio" name="recommendation" value="5" /> Accept<br/>
45 
46 <br/><br/>
47 <h4><b>Submission Categorization :</b></h4>
48 <input type="radio" name="categorization" value="0" /> Highly Theoretical<br/>
49 <input type="radio" name="categorization" value="1" /> Tends Towards Theoretical<br/>
50 <input type="radio" name="categorization" value="2" /> Balanced Theory And Practice<br/>
51 <input type="radio" name="categorization" value="3" /> Tends Towards Practical<br/>
52 <input type="radio" name="categorization" value="4" /> Highly Practical<br/>
53 <br><br>
54 
55 <h3>Write Your Comments</h3>
56 
57 <textarea style="height: 100px; width: 400px;" name="comment"></textarea>
58 <br/>
59 <input hidden name="refereeid" value=$usid/>
60 <input hidden name="val" value="<?php echo $_GET["va"];?>"/>
61 <br>
62 *You do not have to fill all forms to comment on a paper.
63 <br><br>
64 <input type="submit" value="Evaluate Paper">
65 <br/>
66 
67 </form>
68 
69 
70 
71 </body>
72 </html>