├── README.md
└── free
├── 1.jpg
├── 2.png
├── add.html
├── home.html
├── home1.html
├── rem.php
├── sub.html
├── suc.html
├── update.php
└── vi.php
/README.md:
--------------------------------------------------------------------------------
1 | A normal student detail web page where we can able to add a student, remove a student, view the no of students as well as able to modify their contents
2 |
--------------------------------------------------------------------------------
/free/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dineshkumar245/web-development/3fcf0809f55cf2c7108d7a8872cd50fa328c42a6/free/1.jpg
--------------------------------------------------------------------------------
/free/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dineshkumar245/web-development/3fcf0809f55cf2c7108d7a8872cd50fa328c42a6/free/2.png
--------------------------------------------------------------------------------
/free/add.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | www.student details.com
4 |
28 |
29 |
30 |
31 | STUDENT DETAILS
32 |
33 |
34 |
35 | Home
36 | New student
37 | Remove student
38 | View student
39 |
40 |
41 |
42 |
60 |
61 |
62 |
--------------------------------------------------------------------------------
/free/home.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | www.student details.com
4 |
18 |
19 |
20 |
21 | STUDENT DETAILS
22 |
23 |
24 |
25 | Home
26 | New student
27 | Remove student
28 | View student
29 |
30 |
31 | WELCOME TO OUR WEBSITE
32 |
33 |
--------------------------------------------------------------------------------
/free/home1.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | www.student details.com
4 |
28 |
29 |
30 |
31 | STUDENT DETAILS
32 |
33 |
34 |
35 | Home
36 | New student
37 | Remove student
38 | View student
39 |
40 |
41 |
42 |
59 |
60 |
61 |
--------------------------------------------------------------------------------
/free/rem.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | www.student details.com
5 |
29 |
30 |
31 |
32 | STUDENT DETAILS
33 |
34 |
35 |
36 | Home
37 | New student
38 | Remove student
39 | View student
40 |
41 |
42 |
43 |
51 |
52 |
53 |
54 | ';
64 |
65 | $id=$_POST['id'];
66 |
67 | $sql="delete from persons where id='$id'";
68 | $res=$conn->query($sql);
69 | if($res==TRUE)
70 | {
71 | echo 'Data Deletion Success...';
72 | }
73 | else
74 | {
75 | echo 'Error...';
76 | }
77 |
78 | $conn->close();
79 |
80 | ?>
--------------------------------------------------------------------------------
/free/sub.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | www.student details.com
4 |
36 |
37 |
38 |
39 | STUDENT DETAILS
40 |
41 |
42 |
43 | Home
44 | New student
45 | Remove student
46 | View student
47 |
48 |
49 | The students have been removed successfully
50 |
51 |
--------------------------------------------------------------------------------
/free/suc.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | www.student details.com
4 |
36 |
37 |
38 |
39 | STUDENT DETAILS
40 |
41 |
42 |
43 | Home
44 | New student
45 | Remove student
46 | View student
47 |
48 |
49 | The students have been added successfully
50 |
51 |
--------------------------------------------------------------------------------
/free/update.php:
--------------------------------------------------------------------------------
1 | query($sql);
18 |
19 | if($res==TRUE)
20 | {
21 | echo '
Data insertion Success...';
22 | }
23 | else
24 | {
25 | echo 'Error...';
26 | }
27 |
28 | $conn->close();
29 | ?>
--------------------------------------------------------------------------------
/free/vi.php:
--------------------------------------------------------------------------------
1 |
2 |
3 | www.student details.com
4 |
28 |
29 |
30 |
31 | STUDENT DETAILS
32 |
33 |
34 |
35 | Home
36 | New student
37 | Remove student
38 | View student
39 |
40 |
41 |
42 |
43 | STUDENT AVAILABLE |
44 |
45 |
46 |
47 | FIRST NAME |
48 | LAST NAME |
49 | G MAIL |
50 | ID NUMBER |
51 |
52 |
53 |
54 | query($sql);
66 |
67 |
68 | while($row=$res->fetch_assoc())
69 | {
70 | echo "";
71 | echo ''.$row['fname'].' | ';
72 | echo ''.$row['lname'].' | ';
73 | echo ''.$row['gmail'].' | ';
74 | echo ''.$row['id'].' | ';
75 |
76 | echo "
";
77 | }
78 | echo "
";
79 |
80 | ?>
81 |
82 |
83 |
84 |
--------------------------------------------------------------------------------