Esempio n. 1
0
						<div class="material-button circle raised college-accept pink" style=" width:50px; position:absolute; bottom:-75px; right:-25px;height:50px ; margin:50px; border-radius:50%;padding:0px; "><div class="material-layer light"></div><svg class="icon-check"><use xlink:href="#icon-check"></use></svg></div>

						<div class="form-body">
						
						
						<select name="round" id="round">
							<?php 
$o->createRoundList($_GET['event']);
?>
						</select>
					</div>

				</div>
				<?php 
for ($i = 0; $i < $n; $i++) {
    echo "<div class='form-body-part'>\n\t\t\t\t\t\t\t\t<p id='collegeid' style='visibility:hidden'>" . $array[$i]['c_id'] . "</p>\n\t\t\t\t\t\t\t\t<h5>" . $c->getCollegeCodeFromID($array[$i]['c_id']) . "</h5>\n\t\t\t\t\t\t\t\t<input type='number' name='name' placeholder='Score 1' id='score1' required/>\n\t\t\t\t\t\t\t\t<input type='number' name='email' placeholder = 'Score 2' id='score2'required/>\n\t\t\t\t\t\t\t\t<input type='checkbox' name='eliminate' value='1'/>\n\t\t\t\t\t\t\t  </div>";
}
?>
			</div>
			<div class="material-button circle raised registration-accept" style=" width:50px; height:50px ; margin:50px; border-radius:50%;padding:0px; "><div class="material-layer light"></div><svg class="icon-check"><use xlink:href="#icon-check"></use></svg></div>
				
	</div>
			



				

		<footer>

		</footer>
Esempio n. 2
0
?>
		<h1>Sygma 2016 Registration Form</h1>

		<h1><?php 
echo $s->getEventNameFromID($event);
?>
</h1>

		<h2>Sygma 2016 </h2>
		<table style="width:85%; margin:0 auto;">

			<tr>
				<th style="max-width:60px;">sno</th>
				<th>Participant Name</th>
				<th>College code</th>
			</tr>
			<?php 
for ($i = 0; $i < $max; $i++) {
    $sno = $i + 1;
    $code = $c->getCollegeCodeFromID($users[$i]['c_id']);
    echo "<tr>\n\t\t\t\t\t\t\t<td  style='max-width:60px;'>" . $sno . "</td>\n\t\t\t\t\t\t\t<td>" . $users[$i]['username'] . "</td>\n\t\t\t\t\t\t\t<td>" . $code . "</td>\n\n\n\t\t\t\t\t\t</tr>";
}
?>

		</table>



	</body>
</html>
Esempio n. 3
0
		<h1><?php 
echo $ename;
?>
</h1>
		<h2><?php 
echo $rname;
?>
 Score Sheet</h2>
		<h2>Sygma 2016 </h2>
		<table>
			
			<tr>
				<th style="max-width:60px;">sno</th>
				<th>College Code</th>
				
				<th>Final Result</th>
			</tr>
			<?php 
for ($i = 0; $i < $scores[0]['max']; $i++) {
    $sno = $i + 1;
    $a = $c->getCollegeCodeFromID($scores[$i]['c_id']);
    echo "\n\t\t\t\t\t\t<tr>\n\t\t\t\t\t\t\t<td  style='max-width:60px;'>" . $sno . "</td>\n\t\t\t\t\t\t\t<td>" . $a . "</td>\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t<td>" . ($scores[$i]['score2'] + $scores[$i]['score1']) . "</td>\n\t\t\t\t\t\t</tr>\n\n\t\t\t\t\t";
}
?>
			
		</table>
		
			
		
	</body>
</html>