Created
April 4, 2013 06:12
-
-
Save udibagas/5308232 to your computer and use it in GitHub Desktop.
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 | |
$sql = mysql_query('SELECT * FROM jurusan WHERE jml_siswa < 30'); | |
?> | |
<select name="pil_satu"> | |
<?php while ($data = mysql_fetch_array($sql)) : ?> | |
<option value="<?php echo $data['id']; ?>"><?php echo $data['nama']; ?></option> | |
<?php endwhile; ?> | |
</select> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment