├── connect.php ├── head.php ├── stundents_details ├── logout.php ├── inserty.php ├── check_student.php ├── aboutus.php ├── dbcontroller.php ├── activities.php ├── intern_fillin.php ├── sample123.php ├── student_login.php ├── index.php ├── home.php └── fill_details.php /connect.php: -------------------------------------------------------------------------------- 1 | error); 3 | ?> -------------------------------------------------------------------------------- /head.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stundents_details: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 | 7 |
8 | 9 |
10 | 11 | 12 |
-------------------------------------------------------------------------------- /logout.php: -------------------------------------------------------------------------------- 1 | Student Login 7 |
8 |
9 | 10 | 11 |
12 |
13 |
14 | 15 |
16 |
17 | '; 18 | } 19 | ?> -------------------------------------------------------------------------------- /inserty.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /check_student.php: -------------------------------------------------------------------------------- 1 | query("SELECT * FROM `student` WHERE `student_id` = '$student_id'") or die($conn->error); 5 | $v_student = $q_student->num_rows; 6 | if($v_student > 0){ 7 | echo "Success"; 8 | }else{ 9 | session_start(); 10 | if(!ISSET($_SESSION['student_id'])){ 11 | echo' 12 |
Student Login
13 |
14 |
15 | 16 | 17 |
18 |
19 |
20 | 21 |
22 |
23 | '; 24 | } 25 | } 26 | ?> -------------------------------------------------------------------------------- /aboutus.php: -------------------------------------------------------------------------------- 1 |
2 |

VISION

3 |

Excellence in producing highly skilled, well qualified and globally competitive Information Technology Education(ITE) graduation

4 |
5 |

MISSION

6 |

Committed to provide affordable and high quality education for the training and development of ITE professionals equipped with the technological knowledge and skills responsive to the demands of both local and international communities

7 |
8 |

OBJECTIVE

9 |
    10 |
  1. Possess knowledge and skills that would prepare graduate in computing professions who are well versed on application, installation, operation, development, maintenance and administration of IT systems

  2. 11 |
  3. Prepare student to be IT professionals and be expert on design and implementation of Information Systems for business processes

  4. 12 |
  5. Be proficient in designing and developing computing solutions

  6. 13 |
  7. Manifest interpersonal, communications, and leadership skills through significant curricular, co-curricular and extra-curricular activities

  8. 14 |
  9. Virtues social consciousness through active participation in research, extension and professional organization

  10. 15 |
16 |
-------------------------------------------------------------------------------- /dbcontroller.php: -------------------------------------------------------------------------------- 1 | conn = $this->connectDB(); 11 | } 12 | 13 | function connectDB() { 14 | $conn = mysqli_connect($this->host,$this->user,$this->password,$this->database); 15 | return $conn; 16 | } 17 | 18 | function runQuery($query) { 19 | $result = mysqli_query($this->conn,$query); 20 | while($row=mysqli_fetch_assoc($result)) { 21 | $resultset[] = $row; 22 | } 23 | if(!empty($resultset)) 24 | return $resultset; 25 | } 26 | 27 | function numRows($query) { 28 | $result = mysqli_query($this->conn,$query); 29 | $rowcount = mysqli_num_rows($result); 30 | return $rowcount; 31 | } 32 | 33 | function updateQuery($query) { 34 | $result = mysqli_query($this->conn,$query); 35 | if (!$result) { 36 | die('Invalid query: ' . mysql_error()); 37 | } else { 38 | return $result; 39 | } 40 | } 41 | 42 | function insertQuery($query) { 43 | $result = mysqli_query($this->conn,$query); 44 | if (!$result) { 45 | die('Invalid query: ' . mysql_error()); 46 | } else { 47 | return $result; 48 | } 49 | } 50 | 51 | function deleteQuery($query) { 52 | $result = mysqli_query($this->conn,$query); 53 | if (!$result) { 54 | die('Invalid query: ' . mysql_error()); 55 | } else { 56 | return $result; 57 | } 58 | } 59 | } 60 | ?> -------------------------------------------------------------------------------- /activities.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |

Activities

4 |
5 |
6 |

7 |
8 |
9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | query("SELECT * FROM `activity`") or die($conn->error); 23 | while($act_fetch = $act_query->fetch_array()){ 24 | ?> 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 35 | 36 |
Job_nameJob_DescriptionStartEndAction
".date("M d, Y", strtotime($act_fetch['start'])).""?>".date("M d, Y", strtotime($act_fetch['end'])).""?>
" class = "btn btn-warning"> Apply
37 |
38 |
39 | 40 |
-------------------------------------------------------------------------------- /intern_fillin.php: -------------------------------------------------------------------------------- 1 | 2 | 28 | 29 | 30 | 36 | 37 | 38 |
39 | 40 |
41 | 42 |
43 | 44 |
45 | 46 |
47 | 48 | 49 |
50 | 51 | -------------------------------------------------------------------------------- /sample123.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
10 | 11 | 12 |
13 |
14 | 15 | 16 |
17 |
18 | 19 | 20 |
21 |
22 | 23 | 24 |
25 |
26 | 27 | checked> Male 28 | checked> Female 29 |
30 |
31 | 32 | Upload cv: 33 |
34 |
35 | 36 |
37 | 38 |
39 | 40 | 41 | -------------------------------------------------------------------------------- /student_login.php: -------------------------------------------------------------------------------- 1 | _ location.href='fill_details.php' "; 14 | } 15 | else 16 | { 17 | echo ""; 18 | } 19 | } 20 | ?> 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 | 32 |
33 | 34 |
35 | 53 |
54 |
55 |
56 | 57 | 58 | 59 |
60 | 61 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | Information System Society Membership 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 |
21 |
22 | query("SELECT * FROM `activity` WHERE '$date' BETWEEN `start` AND `end`") or die($conn->error); 25 | $f_activity = $q_activity->fetch_array(); 26 | $v_activity = $q_activity->num_rows; 27 | if($v_activity > 0){ 28 | echo '

'.$f_activity['title'].' - '.$f_activity['description'].'

'; 29 | } 30 | ?> 31 | 32 |
33 |
34 |
35 | 36 | 37 | 42 |
43 |
44 | 49 | 50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 | 66 | 67 | 68 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /home.php: -------------------------------------------------------------------------------- 1 |
2 | 45 |
46 |
47 |
48 |

Goal of the Internship platform

49 |

The Internship portal platform aims to

50 |
    51 |
  1. Produce students with technical skills

  2. 52 |
  3. Develop creative innovators with the confidence and courage to seize and transform opportunities for the benefit of the society

  4. 53 |
  5. Provide continues specialized faculty training and professional development

  6. 54 |
  7. Acquire implement and utilize technologies to support for the instructional, administrative, research, and development and extensive needs

  8. 55 |
  9. Provide students with all the resource to enrich their educational experience and work experience

  10. 56 | 57 |
58 |
59 |
-------------------------------------------------------------------------------- /fill_details.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 |
6 |
7 | $value) { 11 | if(empty($_POST[$key])) { 12 | $error_message = "All Fields are required"; 13 | break; 14 | } 15 | } 16 | 17 | 18 | /* Email Validation */ 19 | if(!isset($error_message)) { 20 | if (!filter_var($_POST["email"], FILTER_VALIDATE_EMAIL)) { 21 | $error_message = "Invalid Email Address"; 22 | } 23 | } 24 | 25 | /* Validation to check if gender is selected */ 26 | if(!isset($error_message)) { 27 | if(!isset($_POST["gender"])) { 28 | $error_message = " All Fields are required"; 29 | } 30 | } 31 | 32 | /* Validation to check if Terms and Conditions are accepted */ 33 | if(!isset($error_message)) { 34 | if(!isset($_POST["terms"])) { 35 | $error_message = "Accept Terms and Conditions to Register"; 36 | } 37 | } 38 | 39 | 40 | } 41 | 42 | ?> 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 103 | 104 | 105 |
106 | 107 | 108 |
109 | 110 | 111 |
112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 134 | 135 | 136 | 137 | 140 | 141 | 142 | 144 | 145 |
company_name
first_name
Last Name
email
Genderchecked required > Male 132 | checked required > Female 133 |
Upload cv: 138 | 139 |
143 | I accept Terms and Conditions
146 | 147 | 148 | 149 | --------------------------------------------------------------------------------