Simple Alumni System
Submitted by rinvizle on Wednesday, July 20, 2016 - 10:05.
In this tutorial, I would like to share you this Simple Alumni System in php. This system has a function to Register, see the Records of Alumni Students, Remove and Update Alumni Records.
Sample image in registration
This system is created using PHP + mysql Hope you like my project.
Enjoy Coding.
Sample Code
PHP syntax for records- <?php
- if (!$con)
- {
- }
- echo "<table border='1' align='center' width='600' bgcolor='#999999'>
- <tr>
- <th>AlumniID</th>
- <th>First Name</th>
- <th>Last Name</th>
- <th>Contact</th>
- </tr>";
- {
- echo "<tr>";
- echo "<td>" . $row['alumniID'] . "</td>";
- echo "<td>" . $row['fname'] . "</td>";
- echo "<td>" . $row['lname'] . "</td>";
- echo "<td>" . $row['contact'] . "</td>";
- echo "</tr>";
- }
- echo "</table>";
- ?>

Comments
Add new comment
- Add new comment
- 392 views