└── leo ├── README.md ├── Untitled-1.txt ├── download.jpeg ├── images.jpeg ├── modify.html ├── modify.php ├── newstudent.html ├── newstudent.php ├── readstudent.php └── student.html /leo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhurgatharan/PHP-MYSQL/34b5593e3dce254ef82b8333fbda23dfa487df26/leo/README.md -------------------------------------------------------------------------------- /leo/Untitled-1.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Student 7 | 19 | 20 | 21 |
22 |

Student Details

23 |
24 | 32 |
33 | 34 | 35 | 36 |
37 |
38 |

New Student

39 |
40 | Student Id
41 | Student Name
42 | Student's age
43 | Student's Qualification
44 | 45 | 46 | 47 |
48 |
49 | 50 | 51 | -------------------------------------------------------------------------------- /leo/download.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhurgatharan/PHP-MYSQL/34b5593e3dce254ef82b8333fbda23dfa487df26/leo/download.jpeg -------------------------------------------------------------------------------- /leo/images.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhurgatharan/PHP-MYSQL/34b5593e3dce254ef82b8333fbda23dfa487df26/leo/images.jpeg -------------------------------------------------------------------------------- /leo/modify.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Student 8 | 22 | 23 | 24 | 25 | 26 |
27 |

Student Details

28 |
29 | 35 |
36 |
37 |
38 | 39 |
40 |

Modify Student Details

41 |
42 | Student Id
43 | Student Name
44 | Student's age
45 | Student's Qualification
46 | 47 | 48 | 49 |
50 |
51 |
52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /leo/modify.php: -------------------------------------------------------------------------------- 1 | query($sql); 17 | if($res==true){ 18 | echo "Modification Success"; 19 | } 20 | else 21 | { 22 | echo "Error"; 23 | } 24 | 25 | $conn->close(); 26 | 27 | ?> -------------------------------------------------------------------------------- /leo/newstudent.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Student 7 | 20 | 21 | 22 | 23 |
24 |

Student Details

25 |
26 | 33 |
34 |
35 | 36 | 37 |
38 |
39 |

New Student

40 |
41 | Student Id
42 | Student Name
43 | Student's age
44 | Student's Qualification
45 | 46 | 47 | 48 |
49 |
50 | 51 | 52 | -------------------------------------------------------------------------------- /leo/newstudent.php: -------------------------------------------------------------------------------- 1 | query($sql); 17 | if($res==true){ 18 | echo "Connection Success"; 19 | } 20 | else 21 | { 22 | echo "Error"; 23 | } 24 | 25 | $conn->close(); 26 | 27 | ?> -------------------------------------------------------------------------------- /leo/readstudent.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Student 7 | 20 | 21 | 22 |
23 |

Student Details

24 |
25 | 32 |
33 | 34 | 35 | query($sql); 45 | 46 | if($res->num_rows>0) 47 | { 48 | echo ""; 49 | while($row=$res->fetch_assoc()) 50 | { 51 | echo ""; 52 | echo ''; 53 | echo ''; 54 | echo ''; 55 | echo ''; 56 | echo ""; 57 | } 58 | echo "
' . $row['student_id'] . '' . $row['student_name'] . '' . $row['student_age'] . '' . $row['student_q'] . '
"; 59 | } 60 | else 61 | { 62 | echo 'Record is empty...'; 63 | } 64 | 65 | $conn->close(); 66 | ?> 67 | 68 | -------------------------------------------------------------------------------- /leo/student.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Student 7 | 20 | 21 | 22 | 23 |
24 |

M.KUMARASAMY COLLEGE OF ENGINEERING

25 |
26 | 33 |
34 |
35 |
36 | 37 | 38 |
39 | 40 |
41 |

MKCE

42 |
43 | M.Kumarasamy College of Engineering is an Autonomous Institution, Approved by AICTE, New Delhi and Affiliated to Anna University, Chennai it was established in the year 2000 by M.Kumarasamy Health and Educational Trust with a vision to provide technical education for all the sectors of the society. 44 | The institution with its state of the art facilities and dedicated team of faculty members has become a hub of technocrats and is marching towards new frontiers 45 | 46 |
47 |
48 | 49 | 50 | --------------------------------------------------------------------------------