-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcourse.php
More file actions
26 lines (24 loc) · 1.25 KB
/
course.php
File metadata and controls
26 lines (24 loc) · 1.25 KB
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
<?php
/**
* Export to PHP Array plugin for PHPMyAdmin
* @version 5.1.1
*/
/**
* Database `kings university db`
*/
/* `kings university db`.`course` */
$course = array(
array('coursecode' => 'BNK','course_name' => 'Banking','duration' => '4'),
array('coursecode' => 'BNS','course_name' => 'Business','duration' => '4'),
array('coursecode' => 'CBR','course_name' => 'Cyber Secruity','duration' => '3'),
array('coursecode' => 'CGP','course_name' => 'Computer Games Programming','duration' => '3'),
array('coursecode' => 'CHE','course_name' => 'Chemical Engineering','duration' => '3'),
array('coursecode' => 'CSC','course_name' => 'Computer Science','duration' => '3'),
array('coursecode' => 'EYS','course_name' => 'Early Years Education','duration' => '3'),
array('coursecode' => 'FIC','course_name' => 'Accounting','duration' => '4'),
array('coursecode' => 'FST','course_name' => 'Film Studies','duration' => '3'),
array('coursecode' => 'LLW','course_name' => 'Law','duration' => '3'),
array('coursecode' => 'MST','course_name' => 'Media Studies','duration' => '3'),
array('coursecode' => 'PMR','course_name' => 'Pharmacy','duration' => '4'),
array('coursecode' => 'SSC','course_name' => 'Sport Science','duration' => '3')
);