示例#1
0
                  <!--PHP-->

                  <?php 
        }
    }
    ?>
             </select>
    <!--     </div>
          <div class="form-group">
 --><label>Name</label>
 <select name="student" class="form-control">
         <!--PHP-->
 
                  <?php 
    if (isset($cur_dep) && isset($cur_sem)) {
        $studs = select_all_student($cur_dep, $cur_sem);
        while ($sts = mysqli_fetch_assoc($studs)) {
            ?>
                            <option  value="<?php 
            echo $sts["USN"];
            ?>
"><?php 
            echo $sts["name"];
            ?>
</option>                        
 
                   <!--PHP-->
 
                  <?php 
        }
    }
示例#2
0
<?php

if (isset($_POST["retrive"])) {
    $dept = $_POST["department"];
    $sem = $dept . $_POST["semester"];
    $studentlsit = select_all_student($dept, $sem);
    if (isset($dept) && isset($sem)) {
        ?>
			<div class="container">
						<table class="table table-striped">
							<thead>
								<tr>
									<th><center>USN</center></th>
									<th><center>Name</center></th>
									<th><center>Semister</center></th>
								</tr>
							</thead>
						<?php 
        while ($stinfo = mysqli_fetch_assoc($studentlsit)) {
            ?>
							<tbody>
								<tr>
									<td><input type="text" class="form-control" disabled value="<?php 
            echo $stinfo["USN"];
            ?>
" /></td>
									<td><input type="text" class="form-control" disabled value="<?php 
            echo $stinfo["name"];
            ?>
" /></td>
									<td><input type="text" class="form-control" disabled value="<?php