Simple Alumni System

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 Code

PHP syntax for records
  1. <?php
  2. $con = mysql_connect("localhost","root","");
  3. if (!$con)
  4.         {
  5.                 die('Could not connect: ' . mysql_error());
  6.         }
  7. mysql_select_db("alumni", $con);
  8.         $result = mysql_query("SELECT * FROM personalinfo");
  9.         echo "<table border='1' align='center' width='600' bgcolor='#999999'>
  10.                         <tr>
  11.                         <th>AlumniID</th>
  12.                         <th>First Name</th>
  13.                         <th>Last Name</th>
  14.                         <th>Contact</th>
  15.                         </tr>";
  16. while($row = mysql_fetch_array($result))
  17. {
  18.         echo "<tr>";
  19.         echo "<td>" . $row['alumniID'] . "</td>";
  20.         echo "<td>" . $row['fname'] . "</td>";
  21.         echo "<td>" . $row['lname'] . "</td>";
  22.         echo "<td>" . $row['contact'] . "</td>";
  23.         echo "</tr>";
  24. }
  25.         echo "</table>";
  26. ?>
Sample image in registration Result This system is created using PHP + mysql Hope you like my project. Enjoy Coding.

Comments

Notice: Undefined variable: _SESSION in C:\xampp\htdocs\alumni cool\register.php on line 20 Current User: Hello good day sir you have a very good project but error says this , how can i fix it sir?

Add new comment