This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php session_start(); | |
require_once('inc/inc.php'); | |
// Build schools | |
$sql = "select id_institution,inst_name from institution"; | |
$result = mysql_query($sql); | |
$count = mysql_num_rows($result); | |
$ddi = "<select id='inst'>"; | |
for($a=0;$a<$count;$a++) |