-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvitdb.sql
1291 lines (1188 loc) · 156 KB
/
vitdb.sql
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- phpMyAdmin SQL Dump
-- version 4.0.4
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Nov 23, 2014 at 05:55 PM
-- Server version: 5.6.12-log
-- PHP Version: 5.4.12
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `vitdb`
--
CREATE DATABASE IF NOT EXISTS `vitdb` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci;
USE `vitdb`;
-- --------------------------------------------------------
--
-- Table structure for table `config`
--
CREATE TABLE IF NOT EXISTS `config` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`key` varchar(100) NOT NULL,
`value` varchar(100) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `key` (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
--
-- Dumping data for table `config`
--
INSERT INTO `config` (`id`, `key`, `value`) VALUES
(1, 'max_quiz_questions', '10');
-- --------------------------------------------------------
--
-- Table structure for table `courses`
--
CREATE TABLE IF NOT EXISTS `courses` (
`course_id` int(11) NOT NULL AUTO_INCREMENT,
`full_name` varchar(255) NOT NULL,
`tiny_intro` varchar(255) NOT NULL,
`course_thumbnail` varchar(255) DEFAULT NULL,
`category` varchar(255) NOT NULL,
`difficulty_level` enum('Beginner','Intermediate','Advanced') NOT NULL,
`status` enum('yes','no') NOT NULL,
`description` text NOT NULL,
`points` int(20) NOT NULL DEFAULT '0',
`developed_by` varchar(255) DEFAULT NULL,
`learning_outcome` text,
`target_audience` text,
`section_title` varchar(255) DEFAULT NULL,
`video_title` varchar(255) DEFAULT NULL,
`video_file` varchar(255) DEFAULT NULL,
`srt` varchar(255) DEFAULT NULL,
`full_course_files_zip` varchar(255) DEFAULT NULL,
`additional_file_title` varchar(255) DEFAULT NULL,
`additional_file` varchar(255) DEFAULT NULL,
`is_new` enum('yes','no') DEFAULT NULL,
`created_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`created_by` int(11) NOT NULL,
PRIMARY KEY (`course_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=87 ;
--
-- Dumping data for table `courses`
--
INSERT INTO `courses` (`course_id`, `full_name`, `tiny_intro`, `course_thumbnail`, `category`, `difficulty_level`, `status`, `description`, `points`, `developed_by`, `learning_outcome`, `target_audience`, `section_title`, `video_title`, `video_file`, `srt`, `full_course_files_zip`, `additional_file_title`, `additional_file`, `is_new`, `created_date`, `updated_date`, `created_by`) VALUES
(1, 'Build an Interactive Website', 'Build an Interactive Website', NULL, '6', 'Intermediate', 'yes', 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas at leo eget nisl porta viverra. Ut laoreet, dui at tempus vestibulum, eros leo egestas neque, id adipiscing odio eros et lectus. Vivamus pretium lorem sit amet nulla. Praesent nec dolor at augue ultrices blandit. Quisque aliquet ultrices mi.Donec ac nibh. Phasellus sed sem sed mauris mattis laoreet. Ut fermentum augue ac pede. Duis vitae augue sed nulla lacinia tempor. Pellentesque non ante in magna tincidunt malesuada. Nunc eu m', 100, 'Lynda', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.', '1. Lorem Ipsum is simply dummy text of the printing and typesetting industry.\n2. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s.\n3. when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n4. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'yes', '2014-10-26 16:04:50', '2014-10-26 16:04:50', 3),
(2, 'Introduction to Programming', 'Introduction to Programming', NULL, '6', 'Beginner', 'yes', 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas at leo eget nisl porta viverra. Ut laoreet, dui at tempus vestibulum, eros leo egestas neque, id adipiscing odio eros et lectus. Vivamus pretium lorem sit amet nulla. Praesent nec dolor at augue ultrices blandit. Quisque aliquet ultrices mi.Donec ac nibh. Phasellus sed sem sed mauris mattis laoreet. Ut fermentum augue ac pede. Duis vitae augue sed nulla lacinia tempor. Pellentesque non ante in magna tincidunt malesuada. Nunc eu m', 20, 'Tree House', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.', '1. Lorem Ipsum is simply dummy text of the printing and typesetting industry.\n\n2. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s.\n\n3. when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n\n4. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.\n', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'yes', '2014-10-26 16:04:50', '2014-10-26 16:04:50', 3),
(3, 'How to Write a Business Plan', 'How to Write a Business Plan', NULL, '12', 'Beginner', 'yes', 'hitestLorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas at leo eget nisl porta viverra. Ut laoreet, dui at tempus vestibulum, eros leo egestas neque, id adipiscing odio eros et lectus. Vivamus pretium lorem sit amet nulla. Praesent nec dolor at augue ultrices blandit. Quisque aliquet ultrices mi.Donec ac nibh. Phasellus sed sem sed mauris mattis laoreet. Ut fermentum augue ac pede. Duis vitae augue sed nulla lacinia tempor. Pellentesque non ante in magna tincidunt malesuada. Nunc eu m', 30, 'New Boston', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.', '1. Lorem Ipsum is simply dummy text of the printing and typesetting industry.\n\n\n2. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s.\n\n\n3. when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n\n\n4. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.\n', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'yes', '2014-10-26 16:04:50', '2014-10-26 16:04:50', 3),
(4, 'PHP & Stripe API', 'PHP & Stripe API', NULL, '2', 'Beginner', 'yes', 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas at leo eget nisl porta viverra. Ut laoreet, dui at tempus vestibulum, eros leo egestas neque, id adipiscing odio eros et lectus. Vivamus pretium lorem sit amet nulla. Praesent nec dolor at augue ultrices blandit. Quisque aliquet ultrices mi.Donec ac nibh. Phasellus sed sem sed mauris mattis laoreet. Ut fermentum augue ac pede. Duis vitae augue sed nulla lacinia tempor. Pellentesque non ante in magna tincidunt malesuada. Nunc eu m', 200, 'Lynda', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.', '1. Lorem Ipsum is simply dummy text of the printing and typesetting industry.\n\n\n2. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s.\n\n\n3. when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n\n\n4. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.\n', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'yes', '2014-10-26 16:04:50', '2014-10-26 16:04:50', 3),
(5, 'Using PHP with MySQL', 'Using PHP with MySQL', NULL, '2', 'Beginner', 'yes', 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas at leo eget nisl porta viverra. Ut laoreet, dui at tempus vestibulum, eros leo egestas neque, id adipiscing odio eros et lectus. Vivamus pretium lorem sit amet nulla. Praesent nec dolor at augue ultrices blandit. Quisque aliquet ultrices mi.Donec ac nibh. Phasellus sed sem sed mauris mattis laoreet. Ut fermentum augue ac pede. Duis vitae augue sed nulla lacinia tempor. Pellentesque non ante in magna tincidunt malesuada. Nunc eu m', 1000, 'Udemy', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.', '1. Lorem Ipsum is simply dummy text of the printing and typesetting industry.\n\n\n2. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s.\n\n\n3. when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n\n\n4. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.\n', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'yes', '2014-10-26 16:04:50', '2014-10-26 16:04:50', 3),
(6, 'WordPress Admin Settings', 'WordPress Admin Settings', NULL, '10', 'Beginner', 'yes', 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas at leo eget nisl porta viverra. Ut laoreet, dui at tempus vestibulum, eros leo egestas neque, id adipiscing odio eros et lectus. Vivamus pretium lorem sit amet nulla. Praesent nec dolor at augue ultrices blandit. Quisque aliquet ultrices mi.Donec ac nibh. Phasellus sed sem sed mauris mattis laoreet. Ut fermentum augue ac pede. Duis vitae augue sed nulla lacinia tempor. Pellentesque non ante in magna tincidunt malesuada. Nunc eu m', 5000, 'Udemy', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.', '1. Lorem Ipsum is simply dummy text of the printing and typesetting industry.\n\n\n2. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s.\n\n\n3. when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n\n\n4. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.\n', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'yes', '2014-10-26 16:04:50', '2014-10-26 16:04:50', 3),
(7, 'Git Basics', 'Git Basics', NULL, '11', 'Beginner', 'yes', 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas at leo eget nisl porta viverra. Ut laoreet, dui at tempus vestibulum, eros leo egestas neque, id adipiscing odio eros et lectus. Vivamus pretium lorem sit amet nulla. Praesent nec dolor at augue ultrices blandit. Quisque aliquet ultrices mi.Donec ac nibh. Phasellus sed sem sed mauris mattis laoreet. Ut fermentum augue ac pede. Duis vitae augue sed nulla lacinia tempor. Pellentesque non ante in magna tincidunt malesuada. Nunc eu m', 500, 'Alison', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.', '1. Lorem Ipsum is simply dummy text of the printing and typesetting industry.\n\n\n2. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s.\n\n\n3. when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n\n\n4. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.\n', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'yes', '2014-10-26 16:04:50', '2014-10-26 16:04:50', 0),
(8, 'SEO Basics', 'SEO Basics', NULL, '14', 'Beginner', 'yes', 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas at leo eget nisl porta viverra. Ut laoreet, dui at tempus vestibulum, eros leo egestas neque, id adipiscing odio eros et lectus. Vivamus pretium lorem sit amet nulla. Praesent nec dolor at augue ultrices blandit. Quisque aliquet ultrices mi.Donec ac nibh. Phasellus sed sem sed mauris mattis laoreet. Ut fermentum augue ac pede. Duis vitae augue sed nulla lacinia tempor. Pellentesque non ante in magna tincidunt malesuada. Nunc eu m', 55, 'Coursera', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.', '1. Lorem Ipsum is simply dummy text of the printing and typesetting industry.\n\n\n2. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s.\n\n\n3. when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n\n\n4. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.\n', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'yes', '2014-10-26 16:04:50', '2014-10-26 16:04:50', 0),
(9, 'CSS Foundations', 'CSS Foundations', NULL, '8', 'Intermediate', 'yes', 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas at leo eget nisl porta viverra. Ut laoreet, dui at tempus vestibulum, eros leo egestas neque, id adipiscing odio eros et lectus. Vivamus pretium lorem sit amet nulla. Praesent nec dolor at augue ultrices blandit. Quisque aliquet ultrices mi.Donec ac nibh. Phasellus sed sem sed mauris mattis laoreet. Ut fermentum augue ac pede. Duis vitae augue sed nulla lacinia tempor. Pellentesque non ante in magna tincidunt malesuada. Nunc eu m', 100, 'Udemy', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.', '1. Lorem Ipsum is simply dummy text of the printing and typesetting industry.\n\n\n2. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s.\n\n\n3. when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n\n\n4. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.\n', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'yes', '2014-10-26 16:04:50', '2014-10-26 16:04:50', 0),
(10, 'How to make a Favicon', 'How to make a Favicon', NULL, '13', 'Intermediate', 'yes', 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas at leo eget nisl porta viverra. Ut laoreet, dui at tempus vestibulum, eros leo egestas neque, id adipiscing odio eros et lectus. Vivamus pretium lorem sit amet nulla. Praesent nec dolor at augue ultrices blandit. Quisque aliquet ultrices mi.Donec ac nibh. Phasellus sed sem sed mauris mattis laoreet. Ut fermentum augue ac pede. Duis vitae augue sed nulla lacinia tempor. Pellentesque non ante in magna tincidunt malesuada. Nunc eu m', 100, 'Learnable', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.', '1. Lorem Ipsum is simply dummy text of the printing and typesetting industry.\n\n\n2. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s.\n\n\n3. when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n\n\n4. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.\n', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'yes', '2014-10-26 16:04:50', '2014-10-26 16:04:50', 0),
(11, 'Soft Skills', 'Soft Skills', NULL, '12', 'Beginner', 'yes', 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas at leo eget nisl porta viverra. Ut laoreet, dui at tempus vestibulum, eros leo egestas neque, id adipiscing odio eros et lectus. Vivamus pretium lorem sit amet nulla. Praesent nec dolor at augue ultrices blandit. Quisque aliquet ultrices mi.Donec ac nibh. Phasellus sed sem sed mauris mattis laoreet. Ut fermentum augue ac pede. Duis vitae augue sed nulla lacinia tempor. Pellentesque non ante in magna tincidunt malesuada. Nunc eu m', 100, 'Udemy', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.', '1. Lorem Ipsum is simply dummy text of the printing and typesetting industry.\n\n\n2. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s.\n\n\n3. when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n\n\n4. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.\n', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'yes', '2014-10-26 16:04:50', '2014-10-26 16:04:50', 0),
(12, 'Angular Js', 'Starting With Angula', NULL, '6', 'Beginner', 'yes', 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas at leo eget nisl porta viverra. Ut laoreet, dui at tempus vestibulum, eros leo egestas neque, id adipiscing odio eros et lectus. Vivamus pretium lorem sit amet nulla. Praesent nec dolor at augue ultrices blandit. Quisque aliquet ultrices mi.Donec ac nibh. Phasellus sed sem sed mauris mattis laoreet. Ut fermentum augue ac pede. Duis vitae augue sed nulla lacinia tempor. Pellentesque non ante in magna tincidunt malesuada. Nunc eu m', 100, 'Lynda', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.', '1. Lorem Ipsum is simply dummy text of the printing and typesetting industry.\n\n\n2. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s.\n\n\n3. when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n\n\n4. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.\n', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'yes', '2014-10-26 16:50:40', '2014-10-26 16:50:40', 0),
(13, 'Object-Oriented PHP Basics', 'Object-Oriented PHP Basics', NULL, '2', 'Beginner', 'yes', 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas at leo eget nisl porta viverra. Ut laoreet, dui at tempus vestibulum, eros leo egestas neque, id adipiscing odio eros et lectus. Vivamus pretium lorem sit amet nulla. Praesent nec dolor at augue ultrices blandit. Quisque aliquet ultrices mi.Donec ac nibh. Phasellus sed sem sed mauris mattis laoreet. Ut fermentum augue ac pede. Duis vitae augue sed nulla lacinia tempor. Pellentesque non ante in magna tincidunt malesuada. Nunc eu m', 100, 'TTH', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.', '1. Lorem Ipsum is simply dummy text of the printing and typesetting industry.\n\n\n2. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s.\n\n\n3. when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n\n\n4. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.\n', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'yes', '2014-10-28 10:10:32', '2014-10-28 10:10:32', 0),
(14, 'Course XYZ', 'XYZ', NULL, '7', 'Beginner', 'no', 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas at leo eget nisl porta viverra. Ut laoreet, dui at tempus vestibulum, eros leo egestas neque, id adipiscing odio eros et lectus. Vivamus pretium lorem sit amet nulla. Praesent nec dolor at augue ultrices blandit. Quisque aliquet ultrices mi.Donec ac nibh. Phasellus sed sem sed mauris mattis laoreet. Ut fermentum augue ac pede. Duis vitae augue sed nulla lacinia tempor. Pellentesque non ante in magna tincidunt malesuada. Nunc eu m', 100, 'TTH', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.', '1. Lorem Ipsum is simply dummy text of the printing and typesetting industry.\n\n\n2. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s.\n\n\n3. when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n\n\n4. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.\n', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'yes', '2014-10-28 10:11:40', '2014-10-28 10:11:40', 0),
(15, 'asfsadfasdfasdf', 'asdfasdfdsafsadf', NULL, '1', '', 'yes', 'afsadfsdafasdfsd', 100, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2014-11-09 16:36:11', '2014-11-09 16:36:11', 0),
(16, 'asfsadfasdfasdf', 'asdfasdfdsafsadf', NULL, '1', '', 'yes', 'afsadfsdafasdfsd', 100, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2014-11-09 16:39:00', '2014-11-09 16:39:00', 0),
(17, 'asfsadfasdfasdf', 'asdfasdfdsafsadf', NULL, '1', '', 'yes', 'afsadfsdafasdfsd', 100, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2014-11-09 16:39:20', '2014-11-09 16:39:20', 0),
(18, 'Hola', 'hello hello hello hello', NULL, '3', 'Advanced', 'yes', 'madafaka madafaka madafaka madafaka madafaka madafaka madafaka madafaka madafaka madafaka madafaka madafaka madafaka madafaka madafaka madafaka madafaka madafaka madafaka madafaka madafaka madafaka madafaka madafaka madafaka madafaka madafaka madafaka madafaka madafaka madafaka madafaka madafaka madafaka madafaka ', 100, NULL, NULL, NULL, '', '', '0', '0', '0', '', '0', NULL, '2014-11-11 13:53:56', '2014-11-11 13:53:56', 0),
(19, 'Booo', 'asfsd', NULL, '5', 'Advanced', 'yes', 'asdfsdafsadfasd', 100, NULL, NULL, NULL, 'asdfasdf', 'asdfasdfsadfas', '0', '0', '0', 'asdfasdf', '0', NULL, '2014-11-11 19:17:03', '2014-11-11 19:17:03', 0),
(20, 'PHP & Stripe API', 'Learn key points to code in PHP and to use stripe API', NULL, '2', 'Beginner', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 11:29:31', '2014-11-15 11:29:31', 0),
(21, 'Converting an HTML Site to a PHP Micro Framework', 'Learn key points to convert HTML site to php micro framework', NULL, '2', 'Intermediate', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 11:31:26', '2014-11-15 11:31:26', 0),
(22, 'Enhancing a Simple PHP Application', 'Enhancing a Simple PHP Application', NULL, '2', 'Intermediate', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 11:32:18', '2014-11-15 11:32:18', 0),
(23, 'Build a Simple PHP Application', 'Build a Simple PHP Application', NULL, '2', 'Beginner', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 11:34:39', '2014-11-15 11:34:39', 0),
(24, 'Learn BuddyPress: Social Networks with Wordpress', 'Learn BuddyPress: Social Networks with Wordpress', NULL, '10', 'Intermediate', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 11:37:25', '2014-11-15 11:37:25', 0),
(25, 'CSS Layout Tehcniques', 'CSS Layout Tehcniques', NULL, '8', 'Beginner', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 11:38:29', '2014-11-15 11:38:29', 0),
(26, 'Great WordPress.com Websites', 'Great WordPress.com Websites', NULL, '10', 'Beginner', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 11:39:28', '2014-11-15 11:39:28', 0),
(27, 'How to Make a Website', 'How to Make a Website', NULL, '1', 'Beginner', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 11:40:16', '2014-11-15 11:40:16', 0),
(28, 'Local Wordpress Development', 'Local Wordpress Development', NULL, '10', 'Intermediate', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 11:41:31', '2014-11-15 11:41:31', 0),
(29, 'Building a Wordpress Theme with Foundation 5', 'Building a Wordpress Theme with Foundation 5', NULL, '10', 'Intermediate', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 11:42:24', '2014-11-15 11:42:24', 0),
(30, 'How to Make Websites With WordPress', 'How to Make Websites With WordPress', NULL, '10', 'Beginner', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 11:43:09', '2014-11-15 11:43:09', 0),
(31, 'Website Optimization', 'Website Optimization', NULL, '11', 'Beginner', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 11:44:03', '2014-11-15 11:44:03', 0),
(32, '3D in the Browser', '3D in the Browser', NULL, '1', 'Advanced', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 11:44:44', '2014-11-15 11:44:44', 0),
(33, 'Android Tools', 'Android Tools', NULL, '5', 'Intermediate', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 11:45:13', '2014-11-15 11:45:13', 0),
(34, ' Social Media Strategy', ' Social Media Strategy', NULL, '12', 'Intermediate', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 11:45:56', '2014-11-15 11:45:56', 0),
(35, 'Framework Basics', 'Framework Basics', NULL, '8', 'Beginner', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 11:47:06', '2014-11-15 11:47:06', 0),
(36, 'Web Design Basics', 'Web Design Basics', NULL, '13', 'Beginner', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 11:47:57', '2014-11-15 11:47:57', 0),
(37, 'WordPress for Website Owners', 'WordPress for Website Owners', NULL, '10', 'Beginner', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 11:48:41', '2014-11-15 11:48:41', 0),
(38, ' SASS Basics', ' SASS Basics', NULL, '8', 'Beginner', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 11:49:16', '2014-11-15 11:49:16', 0),
(39, ' How to Freelance', ' How to Freelance', NULL, '12', 'Beginner', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 11:49:45', '2014-11-15 11:49:45', 0),
(40, 'Technology Foundations', 'Technology Foundations', NULL, '11', 'Beginner', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 11:50:19', '2014-11-15 11:50:19', 0),
(41, 'Logo Design Basics', 'Logo Design Basics', NULL, '13', 'Intermediate', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 11:51:03', '2014-11-15 11:51:03', 0),
(42, 'HTML Email Design', 'HTML Email Design', NULL, '13', 'Intermediate', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 11:51:41', '2014-11-15 11:51:41', 0),
(43, 'Creating Wireframe & Photoshop Mockups', 'Creating Wireframe & Photoshop Mockups', NULL, '13', 'Intermediate', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 11:52:38', '2014-11-15 11:52:38', 0),
(44, 'How to Build a WordPress Plugin', 'How to Build a WordPress Plugin', NULL, '10', 'Advanced', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 11:53:20', '2014-11-15 11:53:20', 0),
(45, 'JavaScript Foundations', 'JavaScript Foundations', NULL, '6', 'Beginner', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 11:53:59', '2014-11-15 11:53:59', 0),
(46, 'Accessibility', 'Accessibility', NULL, '1', 'Intermediate', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 11:54:41', '2014-11-15 11:54:41', 0);
INSERT INTO `courses` (`course_id`, `full_name`, `tiny_intro`, `course_thumbnail`, `category`, `difficulty_level`, `status`, `description`, `points`, `developed_by`, `learning_outcome`, `target_audience`, `section_title`, `video_title`, `video_file`, `srt`, `full_course_files_zip`, `additional_file_title`, `additional_file`, `is_new`, `created_date`, `updated_date`, `created_by`) VALUES
(47, 'Website Basics', 'Website Basics', NULL, '1', 'Beginner', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 11:55:18', '2014-11-15 11:55:18', 0),
(48, ' Getting to know HTML', ' Getting to know HTML', NULL, '1', 'Beginner', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 11:55:59', '2014-11-15 11:55:59', 0),
(49, 'Usability Foundations', 'Usability Foundations', NULL, '13', 'Beginner', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 11:56:30', '2014-11-15 11:56:30', 0),
(50, 'Building Websites with Bootstrap 3', 'Building Websites with Bootstrap 3', NULL, '8', 'Intermediate', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 11:57:41', '2014-11-15 11:57:41', 0),
(51, 'Design Foundations', 'Design Foundations', NULL, '13', 'Intermediate', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 11:58:39', '2014-11-15 11:58:39', 0),
(52, ' Copyright Basics', ' Copyright Basics', NULL, '12', 'Beginner', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 11:59:07', '2014-11-15 11:59:07', 0),
(53, 'Creating a CSS Marquee', 'Creating a CSS Marquee', NULL, '8', 'Beginner', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 11:59:50', '2014-11-15 11:59:50', 0),
(54, 'Database FOundations', 'Database FOundations', NULL, '11', 'Intermediate', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 12:00:44', '2014-11-15 12:00:44', 0),
(55, 'CSS Best Practices', 'CSS Best Practices', NULL, '8', 'Intermediate', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 12:01:09', '2014-11-15 12:01:09', 0),
(56, 'Build a Mobile Web App Using jQUery Mobile & AJAX', 'Build a Mobile Web App Using jQUery Mobile & AJAX', NULL, '6', 'Advanced', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 12:01:44', '2014-11-15 12:01:44', 0),
(57, 'How to Build a WordPress Theme', 'How to Build a WordPress Theme', NULL, '10', 'Advanced', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 12:02:18', '2014-11-15 12:02:18', 0),
(58, ' How to Build Your Company', ' How to Build Your Company', NULL, '12', 'Beginner', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 12:02:59', '2014-11-15 12:02:59', 0),
(59, 'Photoshop Foundations', 'Photoshop Foundations', NULL, '13', 'Intermediate', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 12:03:43', '2014-11-15 12:03:43', 0),
(60, 'How to Make A WordPress Blog', 'How to Make A WordPress Blog', NULL, '10', 'Beginner', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 12:04:46', '2014-11-15 12:04:46', 0),
(61, ' How to Market Your Business', ' How to Market Your Business', NULL, '12', 'Intermediate', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 12:05:17', '2014-11-15 12:05:17', 0),
(62, 'How to Build an eCommerce Site Using WordPress & WooCommerce', 'How to Build an eCommerce Site Using WordPress & WooCommerce', NULL, '10', 'Intermediate', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 12:05:50', '2014-11-15 12:05:50', 0),
(63, 'Creating a jQuerry Plugin', 'Creating a jQuerry Plugin', NULL, '7', 'Advanced', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 12:06:38', '2014-11-15 12:06:38', 0),
(64, 'How to Build a Simple Android App', 'How to Build a Simple Android App', NULL, '5', 'Beginner', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 12:07:20', '2014-11-15 12:07:20', 0),
(65, 'Build a Responsive Website', 'Build a Responsive Website', NULL, '8', 'Advanced', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 12:07:45', '2014-11-15 12:07:45', 0),
(66, 'How to Start a Business', 'How to Start a Business', NULL, '12', 'Beginner', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 12:08:14', '2014-11-15 12:08:14', 0),
(67, 'C++ Basics', 'C++ Basics', NULL, '9', 'Beginner', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 12:12:58', '2014-11-15 12:12:58', 0),
(68, 'Filling in C++', 'Filling in C++', NULL, '9', 'Beginner', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 12:14:01', '2014-11-15 12:14:01', 0),
(69, 'Java Basics', 'Java Basics', NULL, '4', 'Beginner', 'yes', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-15 12:14:38', '2014-11-15 12:14:38', 0),
(70, 'MVC 3 Basics', 'MVC 3 Basics', NULL, '3', 'Beginner', 'yes', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin auctor tellus lectus, nec tempus est condimentum sit amet. Duis fermentum pulvinar eros, vel sagittis urna sollicitudin vel. Fusce sed metus eleifend nibh tincidunt aliquet non eget lacus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Duis blandit sollicitudin pellentesque. Pellentesque dapibus sapien vitae arcu dictum efficitur. Ut ac tellus hendrerit diam pharetra gravida. Fusce vitae nisl a sem placerat pharetra eget ac justo. Duis vitae urna varius, accumsan leo vitae, scelerisque nibh. Etiam rutrum convallis ultrices.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer iaculis magna sit amet ligula accumsan feugiat. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Fusce vestibulum nibh in dui pellentesque placerat vitae a ex. Quisque id vehicula urna, quis elementum dui. Etiam mi lacus, aliquet ut bibendum ac, lacinia in nisl. Donec ut ante lectus. Sed venenatis elit eu risus pellentesque semper. Mauris convallis convallis nisl, at sagittis lorem aliquam ut. Pellentesque quis mi eu dolor venenatis fringilla. In ut pulvinar ante. Sed hendrerit, diam eget vestibulum aliquet, elit sem cursus libero, vitae facilisis lectus sapien tempor sem. Suspendisse suscipit pretium risus, at pharetra mi facilisis a.\r\n\r\nAliquam sed lorem nec ligula tempus faucibus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Pellentesque felis libero, euismod vitae consectetur eget, viverra eu purus. Quisque nec elit sit amet ipsum rhoncus ultricies sed sit amet lacus. Fusce vestibulum nunc sapien, sed congue orci tristique quis. Nam at feugiat libero. Vestibulum ante orci, bibendum laoreet aliquet sed, placerat sed velit. Fusce sagittis sagittis tellus ac congue. Phasellus eget maximus ex. In scelerisque odio tincidunt convallis dictum. Praesent ultrices luctus ex, quis pretium nisl pellentesque sed.\r\n\r\nAliquam erat volutpat. Nullam auctor sagittis scelerisque. Nullam ligula elit, rhoncus quis suscipit nec, tincidunt sed lacus. In finibus egestas rutrum. Duis et odio interdum, ultrices magna sed, consequat mauris. Fusce condimentum nibh vitae nulla vulputate vulputate. Sed sed orci lacinia, semper purus vel, pellentesque lorem. Integer porta, odio in ornare ultricies, velit velit sollicitudin magna, quis malesuada nibh ex in erat. Pellentesque blandit nibh neque, non lobortis massa volutpat at. Sed auctor, magna et scelerisque interdum, risus lorem ornare ex, eget suscipit urna felis et nisl. Ut in arcu ultricies, imperdiet lorem id, euismod risus. Mauris eu nisi mauris. Maecenas ac pretium lorem. Suspendisse at augue sit amet est lacinia viverra at vel metus.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-16 10:08:30', '2014-11-16 10:08:30', 0),
(71, 'MVC 4 Basics', 'MVC 4 Basics', NULL, '3', 'Intermediate', 'yes', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin auctor tellus lectus, nec tempus est condimentum sit amet. Duis fermentum pulvinar eros, vel sagittis urna sollicitudin vel. Fusce sed metus eleifend nibh tincidunt aliquet non eget lacus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Duis blandit sollicitudin pellentesque. Pellentesque dapibus sapien vitae arcu dictum efficitur. Ut ac tellus hendrerit diam pharetra gravida. Fusce vitae nisl a sem placerat pharetra eget ac justo. Duis vitae urna varius, accumsan leo vitae, scelerisque nibh. Etiam rutrum convallis ultrices.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer iaculis magna sit amet ligula accumsan feugiat. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Fusce vestibulum nibh in dui pellentesque placerat vitae a ex. Quisque id vehicula urna, quis elementum dui. Etiam mi lacus, aliquet ut bibendum ac, lacinia in nisl. Donec ut ante lectus. Sed venenatis elit eu risus pellentesque semper. Mauris convallis convallis nisl, at sagittis lorem aliquam ut. Pellentesque quis mi eu dolor venenatis fringilla. In ut pulvinar ante. Sed hendrerit, diam eget vestibulum aliquet, elit sem cursus libero, vitae facilisis lectus sapien tempor sem. Suspendisse suscipit pretium risus, at pharetra mi facilisis a.\r\n\r\nAliquam sed lorem nec ligula tempus faucibus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Pellentesque felis libero, euismod vitae consectetur eget, viverra eu purus. Quisque nec elit sit amet ipsum rhoncus ultricies sed sit amet lacus. Fusce vestibulum nunc sapien, sed congue orci tristique quis. Nam at feugiat libero. Vestibulum ante orci, bibendum laoreet aliquet sed, placerat sed velit. Fusce sagittis sagittis tellus ac congue. Phasellus eget maximus ex. In scelerisque odio tincidunt convallis dictum. Praesent ultrices luctus ex, quis pretium nisl pellentesque sed.\r\n\r\nAliquam erat volutpat. Nullam auctor sagittis scelerisque. Nullam ligula elit, rhoncus quis suscipit nec, tincidunt sed lacus. In finibus egestas rutrum. Duis et odio interdum, ultrices magna sed, consequat mauris. Fusce condimentum nibh vitae nulla vulputate vulputate. Sed sed orci lacinia, semper purus vel, pellentesque lorem. Integer porta, odio in ornare ultricies, velit velit sollicitudin magna, quis malesuada nibh ex in erat. Pellentesque blandit nibh neque, non lobortis massa volutpat at. Sed auctor, magna et scelerisque interdum, risus lorem ornare ex, eget suscipit urna felis et nisl. Ut in arcu ultricies, imperdiet lorem id, euismod risus. Mauris eu nisi mauris. Maecenas ac pretium lorem. Suspendisse at augue sit amet est lacinia viverra at vel metus.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-16 10:09:34', '2014-11-16 10:09:34', 0),
(72, 'MVC 5 basics', 'MVC 5 basics', NULL, '3', 'Intermediate', 'yes', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin auctor tellus lectus, nec tempus est condimentum sit amet. Duis fermentum pulvinar eros, vel sagittis urna sollicitudin vel. Fusce sed metus eleifend nibh tincidunt aliquet non eget lacus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Duis blandit sollicitudin pellentesque. Pellentesque dapibus sapien vitae arcu dictum efficitur. Ut ac tellus hendrerit diam pharetra gravida. Fusce vitae nisl a sem placerat pharetra eget ac justo. Duis vitae urna varius, accumsan leo vitae, scelerisque nibh. Etiam rutrum convallis ultrices.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer iaculis magna sit amet ligula accumsan feugiat. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Fusce vestibulum nibh in dui pellentesque placerat vitae a ex. Quisque id vehicula urna, quis elementum dui. Etiam mi lacus, aliquet ut bibendum ac, lacinia in nisl. Donec ut ante lectus. Sed venenatis elit eu risus pellentesque semper. Mauris convallis convallis nisl, at sagittis lorem aliquam ut. Pellentesque quis mi eu dolor venenatis fringilla. In ut pulvinar ante. Sed hendrerit, diam eget vestibulum aliquet, elit sem cursus libero, vitae facilisis lectus sapien tempor sem. Suspendisse suscipit pretium risus, at pharetra mi facilisis a.\r\n\r\nAliquam sed lorem nec ligula tempus faucibus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Pellentesque felis libero, euismod vitae consectetur eget, viverra eu purus. Quisque nec elit sit amet ipsum rhoncus ultricies sed sit amet lacus. Fusce vestibulum nunc sapien, sed congue orci tristique quis. Nam at feugiat libero. Vestibulum ante orci, bibendum laoreet aliquet sed, placerat sed velit. Fusce sagittis sagittis tellus ac congue. Phasellus eget maximus ex. In scelerisque odio tincidunt convallis dictum. Praesent ultrices luctus ex, quis pretium nisl pellentesque sed.\r\n\r\nAliquam erat volutpat. Nullam auctor sagittis scelerisque. Nullam ligula elit, rhoncus quis suscipit nec, tincidunt sed lacus. In finibus egestas rutrum. Duis et odio interdum, ultrices magna sed, consequat mauris. Fusce condimentum nibh vitae nulla vulputate vulputate. Sed sed orci lacinia, semper purus vel, pellentesque lorem. Integer porta, odio in ornare ultricies, velit velit sollicitudin magna, quis malesuada nibh ex in erat. Pellentesque blandit nibh neque, non lobortis massa volutpat at. Sed auctor, magna et scelerisque interdum, risus lorem ornare ex, eget suscipit urna felis et nisl. Ut in arcu ultricies, imperdiet lorem id, euismod risus. Mauris eu nisi mauris. Maecenas ac pretium lorem. Suspendisse at augue sit amet est lacinia viverra at vel metus.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-16 10:10:43', '2014-11-16 10:10:43', 0),
(73, 'J2ME basics ', 'J2ME basics ', NULL, '4', 'Beginner', 'yes', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin auctor tellus lectus, nec tempus est condimentum sit amet. Duis fermentum pulvinar eros, vel sagittis urna sollicitudin vel. Fusce sed metus eleifend nibh tincidunt aliquet non eget lacus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Duis blandit sollicitudin pellentesque. Pellentesque dapibus sapien vitae arcu dictum efficitur. Ut ac tellus hendrerit diam pharetra gravida. Fusce vitae nisl a sem placerat pharetra eget ac justo. Duis vitae urna varius, accumsan leo vitae, scelerisque nibh. Etiam rutrum convallis ultrices.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer iaculis magna sit amet ligula accumsan feugiat. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Fusce vestibulum nibh in dui pellentesque placerat vitae a ex. Quisque id vehicula urna, quis elementum dui. Etiam mi lacus, aliquet ut bibendum ac, lacinia in nisl. Donec ut ante lectus. Sed venenatis elit eu risus pellentesque semper. Mauris convallis convallis nisl, at sagittis lorem aliquam ut. Pellentesque quis mi eu dolor venenatis fringilla. In ut pulvinar ante. Sed hendrerit, diam eget vestibulum aliquet, elit sem cursus libero, vitae facilisis lectus sapien tempor sem. Suspendisse suscipit pretium risus, at pharetra mi facilisis a.\r\n\r\nAliquam sed lorem nec ligula tempus faucibus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Pellentesque felis libero, euismod vitae consectetur eget, viverra eu purus. Quisque nec elit sit amet ipsum rhoncus ultricies sed sit amet lacus. Fusce vestibulum nunc sapien, sed congue orci tristique quis. Nam at feugiat libero. Vestibulum ante orci, bibendum laoreet aliquet sed, placerat sed velit. Fusce sagittis sagittis tellus ac congue. Phasellus eget maximus ex. In scelerisque odio tincidunt convallis dictum. Praesent ultrices luctus ex, quis pretium nisl pellentesque sed.\r\n\r\nAliquam erat volutpat. Nullam auctor sagittis scelerisque. Nullam ligula elit, rhoncus quis suscipit nec, tincidunt sed lacus. In finibus egestas rutrum. Duis et odio interdum, ultrices magna sed, consequat mauris. Fusce condimentum nibh vitae nulla vulputate vulputate. Sed sed orci lacinia, semper purus vel, pellentesque lorem. Integer porta, odio in ornare ultricies, velit velit sollicitudin magna, quis malesuada nibh ex in erat. Pellentesque blandit nibh neque, non lobortis massa volutpat at. Sed auctor, magna et scelerisque interdum, risus lorem ornare ex, eget suscipit urna felis et nisl. Ut in arcu ultricies, imperdiet lorem id, euismod risus. Mauris eu nisi mauris. Maecenas ac pretium lorem. Suspendisse at augue sit amet est lacinia viverra at vel metus.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-16 10:13:34', '2014-11-16 10:13:34', 0),
(74, 'Graphics in C++', 'Graphics in C++', NULL, '9', 'Intermediate', 'yes', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin auctor tellus lectus, nec tempus est condimentum sit amet. Duis fermentum pulvinar eros, vel sagittis urna sollicitudin vel. Fusce sed metus eleifend nibh tincidunt aliquet non eget lacus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Duis blandit sollicitudin pellentesque. Pellentesque dapibus sapien vitae arcu dictum efficitur. Ut ac tellus hendrerit diam pharetra gravida. Fusce vitae nisl a sem placerat pharetra eget ac justo. Duis vitae urna varius, accumsan leo vitae, scelerisque nibh. Etiam rutrum convallis ultrices.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer iaculis magna sit amet ligula accumsan feugiat. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Fusce vestibulum nibh in dui pellentesque placerat vitae a ex. Quisque id vehicula urna, quis elementum dui. Etiam mi lacus, aliquet ut bibendum ac, lacinia in nisl. Donec ut ante lectus. Sed venenatis elit eu risus pellentesque semper. Mauris convallis convallis nisl, at sagittis lorem aliquam ut. Pellentesque quis mi eu dolor venenatis fringilla. In ut pulvinar ante. Sed hendrerit, diam eget vestibulum aliquet, elit sem cursus libero, vitae facilisis lectus sapien tempor sem. Suspendisse suscipit pretium risus, at pharetra mi facilisis a.\r\n\r\nAliquam sed lorem nec ligula tempus faucibus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Pellentesque felis libero, euismod vitae consectetur eget, viverra eu purus. Quisque nec elit sit amet ipsum rhoncus ultricies sed sit amet lacus. Fusce vestibulum nunc sapien, sed congue orci tristique quis. Nam at feugiat libero. Vestibulum ante orci, bibendum laoreet aliquet sed, placerat sed velit. Fusce sagittis sagittis tellus ac congue. Phasellus eget maximus ex. In scelerisque odio tincidunt convallis dictum. Praesent ultrices luctus ex, quis pretium nisl pellentesque sed.\r\n\r\nAliquam erat volutpat. Nullam auctor sagittis scelerisque. Nullam ligula elit, rhoncus quis suscipit nec, tincidunt sed lacus. In finibus egestas rutrum. Duis et odio interdum, ultrices magna sed, consequat mauris. Fusce condimentum nibh vitae nulla vulputate vulputate. Sed sed orci lacinia, semper purus vel, pellentesque lorem. Integer porta, odio in ornare ultricies, velit velit sollicitudin magna, quis malesuada nibh ex in erat. Pellentesque blandit nibh neque, non lobortis massa volutpat at. Sed auctor, magna et scelerisque interdum, risus lorem ornare ex, eget suscipit urna felis et nisl. Ut in arcu ultricies, imperdiet lorem id, euismod risus. Mauris eu nisi mauris. Maecenas ac pretium lorem. Suspendisse at augue sit amet est lacinia viverra at vel metus.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-16 10:16:05', '2014-11-16 10:16:05', 0),
(75, 'Developing Services in android', 'Developing Services in android', NULL, '5', 'Intermediate', 'yes', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin auctor tellus lectus, nec tempus est condimentum sit amet. Duis fermentum pulvinar eros, vel sagittis urna sollicitudin vel. Fusce sed metus eleifend nibh tincidunt aliquet non eget lacus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Duis blandit sollicitudin pellentesque. Pellentesque dapibus sapien vitae arcu dictum efficitur. Ut ac tellus hendrerit diam pharetra gravida. Fusce vitae nisl a sem placerat pharetra eget ac justo. Duis vitae urna varius, accumsan leo vitae, scelerisque nibh. Etiam rutrum convallis ultrices.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer iaculis magna sit amet ligula accumsan feugiat. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Fusce vestibulum nibh in dui pellentesque placerat vitae a ex. Quisque id vehicula urna, quis elementum dui. Etiam mi lacus, aliquet ut bibendum ac, lacinia in nisl. Donec ut ante lectus. Sed venenatis elit eu risus pellentesque semper. Mauris convallis convallis nisl, at sagittis lorem aliquam ut. Pellentesque quis mi eu dolor venenatis fringilla. In ut pulvinar ante. Sed hendrerit, diam eget vestibulum aliquet, elit sem cursus libero, vitae facilisis lectus sapien tempor sem. Suspendisse suscipit pretium risus, at pharetra mi facilisis a.\r\n\r\nAliquam sed lorem nec ligula tempus faucibus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Pellentesque felis libero, euismod vitae consectetur eget, viverra eu purus. Quisque nec elit sit amet ipsum rhoncus ultricies sed sit amet lacus. Fusce vestibulum nunc sapien, sed congue orci tristique quis. Nam at feugiat libero. Vestibulum ante orci, bibendum laoreet aliquet sed, placerat sed velit. Fusce sagittis sagittis tellus ac congue. Phasellus eget maximus ex. In scelerisque odio tincidunt convallis dictum. Praesent ultrices luctus ex, quis pretium nisl pellentesque sed.\r\n\r\nAliquam erat volutpat. Nullam auctor sagittis scelerisque. Nullam ligula elit, rhoncus quis suscipit nec, tincidunt sed lacus. In finibus egestas rutrum. Duis et odio interdum, ultrices magna sed, consequat mauris. Fusce condimentum nibh vitae nulla vulputate vulputate. Sed sed orci lacinia, semper purus vel, pellentesque lorem. Integer porta, odio in ornare ultricies, velit velit sollicitudin magna, quis malesuada nibh ex in erat. Pellentesque blandit nibh neque, non lobortis massa volutpat at. Sed auctor, magna et scelerisque interdum, risus lorem ornare ex, eget suscipit urna felis et nisl. Ut in arcu ultricies, imperdiet lorem id, euismod risus. Mauris eu nisi mauris. Maecenas ac pretium lorem. Suspendisse at augue sit amet est lacinia viverra at vel metus.', 100, NULL, NULL, NULL, 'section 1', 'video 1', '0', '0', '0', 'file 1', '0', NULL, '2014-11-16 10:18:33', '2014-11-16 10:18:33', 0),
(76, 'NEW COURSE ABC', 'this is a good course', NULL, '7', 'Beginner', 'no', 'this is a good coursethis is a good coursethis is a good coursethis is a good coursethis is a good coursethis is a good coursethis is a good coursethis is a good coursethis is a good coursethis is a good coursethis is a good coursethis is a good course', 100, NULL, NULL, NULL, 'n/a', '0', '0', '0', '0', '0', '0', NULL, '2014-11-20 10:50:58', '2014-11-20 10:50:58', 1),
(77, 'XYZ', 'kajflsdalfkjsadkfjsdaklfjsdfjlksdajf', NULL, '9', 'Advanced', 'no', 'lkadsjflsdklfjsklfjskldafjlkajdkfjlksadjflsdajfl', 100, NULL, NULL, NULL, 'n/a', '0', '0', '0', '0', '0', '0', NULL, '2014-11-20 18:18:16', '2014-11-20 18:18:16', 1),
(78, 'Best Course XYZ', 'Best Course XYZ', NULL, '1', 'Beginner', 'no', 'Best Course XYZBest Course XYZBest Course XYZ', 100, NULL, NULL, NULL, 'n/a', '0', '0', '0', '0', '0', '0', NULL, '2014-11-20 18:25:43', '2014-11-20 18:25:43', 1),
(79, 'Best Course XYZBest Course XYZ', 'Best Course XYZBest Course XYZ', NULL, '4', 'Advanced', 'no', 'Best Course XYZBest Course XYZ', 100, NULL, NULL, NULL, 'n/a', '0', '0', '0', '0', '0', '0', NULL, '2014-11-20 18:26:55', '2014-11-20 18:26:55', 1),
(80, 'dgsgaga', 'dgsgaga', NULL, '5', 'Advanced', 'no', 'dgsgagadgsgagadgsgagadgsgaga', 100, NULL, NULL, NULL, 'n/a', '0', '0', '0', '0', '0', '0', NULL, '2014-11-20 18:29:06', '2014-11-20 18:29:06', 1),
(81, 'Best Course XYZ', 'Best Course XYZ', NULL, '1', 'Advanced', 'no', 'Best Course XYZBest Course XYZ', 100, NULL, NULL, NULL, 'n/a', '0', '0', '0', '0', '0', '0', NULL, '2014-11-20 18:32:43', '2014-11-20 18:32:43', 1),
(82, '_data_data_data_data_data', '_data_data_data', NULL, '1', 'Beginner', 'no', '_data_data_data_data', 100, NULL, NULL, NULL, 'n/a', '0', '0', '0', '0', '0', '0', NULL, '2014-11-20 18:34:48', '2014-11-20 18:34:48', 1),
(83, 'Best Course XYZ', 'Best Course XYZ', NULL, '5', 'Advanced', 'no', 'Best Course XYZBest Course XYZBest Course XYZ', 100, NULL, NULL, NULL, 'n/a', '0', '0', '0', '0', '0', '0', NULL, '2014-11-20 18:36:04', '2014-11-20 18:36:04', 1),
(84, 'datadatadatadatadata', 'data', NULL, '1', 'Beginner', 'no', 'datadatadatadata', 100, NULL, NULL, NULL, 'n/a', '0', '0', '0', '0', '0', '0', NULL, '2014-11-20 18:39:03', '2014-11-20 18:39:03', 1),
(85, 'data', 'data', NULL, '1', 'Advanced', 'no', 'datadatadata', 100, NULL, NULL, NULL, 'n/a', '0', '0', '0', '0', '0', '0', NULL, '2014-11-20 18:40:37', '2014-11-20 18:40:37', 1),
(86, 'data', 'datadatadata', NULL, '1', 'Advanced', 'no', 'datadatadata', 100, NULL, NULL, NULL, 'n/a', '0', '0', '0', '0', '0', '0', NULL, '2014-11-20 18:41:21', '2014-11-20 18:41:21', 1);
-- --------------------------------------------------------
--
-- Table structure for table `course_category`
--
CREATE TABLE IF NOT EXISTS `course_category` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`category` varchar(255) NOT NULL,
`color_tag` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=15 ;
--
-- Dumping data for table `course_category`
--
INSERT INTO `course_category` (`id`, `category`, `color_tag`) VALUES
(1, 'HTML', 'html'),
(2, 'PHP', 'php'),
(3, 'ASP.NET', 'asp'),
(4, 'Java', 'java'),
(5, 'Android', 'android'),
(6, 'JavaScript', 'javascript'),
(7, 'jQuery', 'jquery'),
(8, 'CSS', 'css'),
(9, 'C++', 'cpp'),
(10, 'WordPress', 'wordpress'),
(11, 'Dev. Tools', 'd-tools'),
(12, 'Business', 'business'),
(13, 'Design', 'design'),
(14, 'Other', 'other');
-- --------------------------------------------------------
--
-- Table structure for table `course_enrollment`
--
CREATE TABLE IF NOT EXISTS `course_enrollment` (
`enrol_id` int(11) NOT NULL AUTO_INCREMENT,
`course_id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`enrol_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`status` enum('in-progress','cancelled','completed') NOT NULL,
`progress` int(11) NOT NULL,
PRIMARY KEY (`enrol_id`),
KEY `enrol_time` (`enrol_time`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=34 ;
--
-- Dumping data for table `course_enrollment`
--
INSERT INTO `course_enrollment` (`enrol_id`, `course_id`, `user_id`, `enrol_time`, `status`, `progress`) VALUES
(3, 2, 6, '2014-11-14 19:11:50', 'in-progress', 0),
(5, 2, 2, '2014-11-18 14:18:52', 'in-progress', 0),
(6, 18, 1, '2014-11-16 05:20:32', 'in-progress', 0),
(10, 1, 1, '2014-11-16 06:38:35', 'completed', 100),
(11, 2, 1, '2014-11-16 19:20:10', 'in-progress', 0),
(12, 6, 1, '2014-11-16 19:25:00', 'in-progress', 0),
(13, 5, 2, '2014-11-18 14:20:47', 'in-progress', 0),
(14, 3, 1, '2014-11-17 15:31:47', 'in-progress', 0),
(15, 1, 6, '2014-11-18 14:23:50', 'in-progress', 0),
(18, 2, 73, '2014-11-20 09:08:15', 'in-progress', 0),
(19, 1, 75, '2014-11-20 18:02:49', 'in-progress', 0),
(20, 1, 77, '2014-11-21 10:04:38', 'in-progress', 0),
(21, 2, 77, '2014-11-21 10:12:34', 'in-progress', 0),
(22, 3, 77, '2014-11-21 10:12:34', 'in-progress', 0),
(23, 3, 6, '2014-11-22 07:49:48', 'in-progress', 0),
(24, 1, 80, '2014-11-22 08:14:33', 'in-progress', 0),
(25, 2, 80, '2014-11-22 08:14:34', 'in-progress', 0),
(26, 3, 80, '2014-11-22 08:14:34', 'in-progress', 0),
(27, 6, 6, '2014-11-22 11:48:02', 'in-progress', 0),
(28, 8, 6, '2014-11-22 11:50:11', 'in-progress', 0),
(29, 9, 6, '2014-11-22 11:51:16', 'in-progress', 0),
(30, 4, 1, '2014-11-23 17:07:30', 'in-progress', 0),
(31, 5, 1, '2014-11-23 17:07:30', 'in-progress', 0),
(32, 7, 1, '2014-11-23 17:07:30', 'in-progress', 0),
(33, 8, 1, '2014-11-23 17:07:30', 'in-progress', 0);
-- --------------------------------------------------------
--
-- Table structure for table `course_rating`
--
CREATE TABLE IF NOT EXISTS `course_rating` (
`rating_id` int(10) NOT NULL AUTO_INCREMENT,
`course_id` int(10) NOT NULL,
`user_id` int(10) NOT NULL,
`rating` int(10) NOT NULL,
PRIMARY KEY (`rating_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=13 ;
--
-- Dumping data for table `course_rating`
--
INSERT INTO `course_rating` (`rating_id`, `course_id`, `user_id`, `rating`) VALUES
(2, 5, 3, 5),
(3, 5, 3, 0),
(4, 5, 3, 5),
(5, 12, 44, 5),
(6, 4, 6, 5),
(7, 4, 1, 5),
(8, 1, 6, 5),
(9, 6, 6, 5),
(10, 2, 6, 5),
(11, 5, 67, 5),
(12, 1, 13, 5);
-- --------------------------------------------------------
--
-- Table structure for table `course_review`
--
CREATE TABLE IF NOT EXISTS `course_review` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`course_id` int(10) NOT NULL,
`user_id` int(10) NOT NULL,
`review` text NOT NULL,
`submittion_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`marked_by_teacher` int(1) NOT NULL DEFAULT '0',
`marks` int(3) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=16 ;
--
-- Dumping data for table `course_review`
--
INSERT INTO `course_review` (`id`, `course_id`, `user_id`, `review`, `submittion_date`, `marked_by_teacher`, `marks`) VALUES
(12, 3, 1, ' agvaaaaaaaaaaaaaaaaa \r\n ', '2014-11-23 16:53:28', 1, 50),
(13, 5, 2, ' agvaaaaaaaaaaaaaaaaa \r\n ', '2014-11-17 20:19:04', 1, 30),
(14, 1, 6, ' Build an Interactive WebsiteBuild an Interactive WebsiteBuild an Interactive WebsiteBuild an Interactive WebsiteBuild an Interactive Website\r\n ', '2014-11-18 14:30:26', 1, 40),
(15, 1, 1, '\r\n ewagewagaw waeg waeg wea gawe aw agwseg wagwagwgwag ', '2014-11-22 20:10:31', 1, 50);
-- --------------------------------------------------------
--
-- Table structure for table `files`
--
CREATE TABLE IF NOT EXISTS `files` (
`file_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`course_id` int(11) NOT NULL,
`file_name` varchar(255) COLLATE latin1_general_ci NOT NULL,
`file_orig_name` varchar(255) COLLATE latin1_general_ci NOT NULL,
`file_path` varchar(255) COLLATE latin1_general_ci NOT NULL,
`upload_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`file_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=19 ;
--
-- Dumping data for table `files`
--
INSERT INTO `files` (`file_id`, `course_id`, `file_name`, `file_orig_name`, `file_path`, `upload_date`) VALUES
(4, 0, '9e592f548e42bd99ce860ad18f24e117.srt', 'jQuery_Basics_Overview.srt', 'A:/xampp/htdocs/vit/upload/9e592f548e42bd99ce860ad18f24e117.srt', '2014-11-11 15:05:48'),
(5, 0, '771ffc870e5d80a90ac22f8f0bca0921.mp4', 'jQuery_Documentation_-_What_does_it_mean-.mp4', 'A:/xampp/htdocs/vit/upload/771ffc870e5d80a90ac22f8f0bca0921.mp4', '2014-11-11 15:05:48'),
(6, 0, '7a01485a5fa1126e35febcb49aff14a7.srt', 'jQuery_Documentation_-_What_does_it_mean-.srt', 'A:/xampp/htdocs/vit/upload/7a01485a5fa1126e35febcb49aff14a7.srt', '2014-11-11 15:05:48'),
(7, 0, '36ac1400183eeeaac9bb88d1e634676b.mp4', 'TH-jQuery-Basics-S1-V1-720.mp4', 'A:/xampp/htdocs/vit/upload/36ac1400183eeeaac9bb88d1e634676b.mp4', '2014-11-11 15:05:48'),
(8, 0, '89b66f4a6f3aa8086c240f0a8fbcc34b.mp4', 'Ways_to_Include_jQuery_in_a_Project.mp4', 'A:/xampp/htdocs/vit/upload/89b66f4a6f3aa8086c240f0a8fbcc34b.mp4', '2014-11-11 15:05:48'),
(9, 0, 'db1351196f6bc92c8e9454ef03289708.mp4', 'What_is_jQuery-.mp4', 'A:/xampp/htdocs/vit/upload/db1351196f6bc92c8e9454ef03289708.mp4', '2014-11-11 15:05:48'),
(10, 0, '7a17ebeb1fa6f5e3341965232beeeb75.mp4', 'What_is_the_DOM-.mp4', 'A:/xampp/htdocs/vit/upload/7a17ebeb1fa6f5e3341965232beeeb75.mp4', '2014-11-11 15:05:48'),
(11, 0, 'e7ee378194f133530c5fdfdd91466a1f.srt', 'jQuery_Basics_Overview.srt', 'A:/xampp/htdocs/vit/upload/e7ee378194f133530c5fdfdd91466a1f.srt', '2014-11-11 15:06:44'),
(12, 0, '36d7ac6e49f8e6b60e6afead71b87ee2.mp4', 'jQuery_Documentation_-_What_does_it_mean-.mp4', 'A:/xampp/htdocs/vit/upload/36d7ac6e49f8e6b60e6afead71b87ee2.mp4', '2014-11-11 15:06:44'),
(13, 1, '32343f6dc780aed24bece469f31a5cfd.mp4', 'What_is_jQuery-.mp4', 'A:/xampp/htdocs/vit/upload/32343f6dc780aed24bece469f31a5cfd.mp4', '2014-11-11 15:06:44'),
(14, 1, 'ecbeb817c1b611efaf4d34d17926ab88.mp4', 'Adding_a_Contact_Form__Checking_the.mp4', 'A:/xampp/htdocs/vit/upload/ecbeb817c1b611efaf4d34d17926ab88.mp4', '2014-11-13 10:45:15'),
(15, 1, '88546d0ac809a27502ec6744d3a3f5f0.mp4', 'Adding_a_Contact_Form__Creating_Inpu.mp4', 'A:/xampp/htdocs/vit/upload/88546d0ac809a27502ec6744d3a3f5f0.mp4', '2014-11-13 10:45:15'),
(16, 1, 'a65ec4aa07f7de7dbbce5d4c760acc87.mp4', 'Adding_a_Contact_Form__Redirecting_A.mp4', 'A:/xampp/htdocs/vit/upload/a65ec4aa07f7de7dbbce5d4c760acc87.mp4', '2014-11-13 10:45:15'),
(17, 1, 'cf911163f92fad2b37b85f49f5e17d97.mp4', 'Adding_a_Contact_Form__Working_with_1.mp4', 'A:/xampp/htdocs/vit/upload/cf911163f92fad2b37b85f49f5e17d97.mp4', '2014-11-13 10:45:15'),
(18, 1, '48d88e2b6c8c3558712982f8e159d177.mp4', 'Adding_a_Contact_Form__Working_with_2.mp4', 'A:/xampp/htdocs/vit/upload/48d88e2b6c8c3558712982f8e159d177.mp4', '2014-11-13 10:45:15');
-- --------------------------------------------------------
--
-- Table structure for table `lectures`
--
CREATE TABLE IF NOT EXISTS `lectures` (
`lect_id` int(11) NOT NULL AUTO_INCREMENT,
`course_id` int(11) NOT NULL,
`vid_title` varchar(255) DEFAULT NULL,
`vid_path` varchar(255) DEFAULT NULL,
`srt_path` varchar(255) DEFAULT NULL,
`progress` int(20) DEFAULT NULL,
`lect_progress_points` int(20) DEFAULT NULL,
`additional_file_title` varchar(255) DEFAULT NULL,
`additional_file_path` varchar(255) DEFAULT NULL,
`created_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`is_completed` enum('yes','no') DEFAULT NULL,
PRIMARY KEY (`lect_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=46 ;
--
-- Dumping data for table `lectures`
--
INSERT INTO `lectures` (`lect_id`, `course_id`, `vid_title`, `vid_path`, `srt_path`, `progress`, `lect_progress_points`, `additional_file_title`, `additional_file_path`, `created_date`, `updated_date`, `is_completed`) VALUES
(2, 1, 'Adding a Contact Form', 'upload/ecbeb817c1b611efaf4d34d17926ab88.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-13 10:25:56', '2014-11-13 10:25:56', NULL),
(3, 1, 'Creating Input', 'upload/88546d0ac809a27502ec6744d3a3f5f0.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-13 10:26:46', '2014-11-13 10:26:46', NULL),
(4, 1, 'Checking and Redirecting', 'upload/a65ec4aa07f7de7dbbce5d4c760acc87.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-13 10:33:35', '2014-11-13 10:33:35', NULL),
(5, 1, 'Validations', 'upload/cf911163f92fad2b37b85f49f5e17d97.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-13 10:34:11', '2014-11-13 10:34:11', NULL),
(6, 1, 'Working with GitHub', 'upload/48d88e2b6c8c3558712982f8e159d177.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-13 10:34:47', '2014-11-13 10:34:47', NULL),
(7, 2, 'Creating Input', 'upload/88546d0ac809a27502ec6744d3a3f5f0.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-13 10:26:46', '2014-11-13 10:26:46', NULL),
(8, 2, 'Checking and Redirecting', 'upload/a65ec4aa07f7de7dbbce5d4c760acc87.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-13 10:33:35', '2014-11-13 10:33:35', NULL),
(9, 2, 'Validations', 'upload/cf911163f92fad2b37b85f49f5e17d97.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-13 10:34:11', '2014-11-13 10:34:11', NULL),
(10, 2, 'Working with GitHub', 'upload/48d88e2b6c8c3558712982f8e159d177.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-13 10:34:47', '2014-11-13 10:34:47', NULL),
(11, 3, 'Creating Input', 'upload/88546d0ac809a27502ec6744d3a3f5f0.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-13 10:26:46', '2014-11-13 10:26:46', NULL),
(12, 3, 'Checking and Redirecting', 'upload/a65ec4aa07f7de7dbbce5d4c760acc87.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-13 10:33:35', '2014-11-13 10:33:35', NULL),
(13, 3, 'Validations', 'upload/cf911163f92fad2b37b85f49f5e17d97.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-13 10:34:11', '2014-11-13 10:34:11', NULL),
(14, 3, 'Working with GitHub', 'upload/48d88e2b6c8c3558712982f8e159d177.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-13 10:34:47', '2014-11-13 10:34:47', NULL),
(15, 4, 'Creating Input', 'upload/88546d0ac809a27502ec6744d3a3f5f0.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-13 10:26:46', '2014-11-13 10:26:46', NULL),
(16, 4, 'Checking and Redirecting', 'upload/a65ec4aa07f7de7dbbce5d4c760acc87.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-13 10:33:35', '2014-11-13 10:33:35', NULL),
(17, 4, 'Validations', 'upload/cf911163f92fad2b37b85f49f5e17d97.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-13 10:34:11', '2014-11-13 10:34:11', NULL),
(18, 4, 'Working with GitHub', 'upload/48d88e2b6c8c3558712982f8e159d177.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-13 10:34:47', '2014-11-13 10:34:47', NULL),
(19, 5, 'Creating Input', 'upload/88546d0ac809a27502ec6744d3a3f5f0.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-13 10:26:46', '2014-11-13 10:26:46', NULL),
(20, 5, 'Checking and Redirecting', 'upload/a65ec4aa07f7de7dbbce5d4c760acc87.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-13 10:33:35', '2014-11-13 10:33:35', NULL),
(21, 5, 'Validations', 'upload/cf911163f92fad2b37b85f49f5e17d97.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-13 10:34:11', '2014-11-13 10:34:11', NULL),
(22, 5, 'Working with GitHub', 'upload/48d88e2b6c8c3558712982f8e159d177.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-13 10:34:47', '2014-11-13 10:34:47', NULL),
(23, 2, 'Adding a Contact Form', 'upload/ecbeb817c1b611efaf4d34d17926ab88.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-13 10:25:56', '2014-11-13 10:25:56', NULL),
(24, 3, 'Adding a Contact Form', 'upload/ecbeb817c1b611efaf4d34d17926ab88.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-13 10:25:56', '2014-11-13 10:25:56', NULL),
(25, 4, 'Adding a Contact Form', 'upload/ecbeb817c1b611efaf4d34d17926ab88.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-13 10:25:56', '2014-11-13 10:25:56', NULL),
(26, 1, 'Adding a Contact Form', 'upload/ecbeb817c1b611efaf4d34d17926ab88.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-13 10:25:56', '2014-11-13 10:25:56', NULL),
(27, 76, 'Vid:1', 'files/eb7766916822817878e4c993f5c538d0.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-20 10:51:52', '2014-11-20 10:51:52', NULL),
(28, 77, 'sdflksdfjfds', 'files/80717a3e45d6312f8da69f7b23660ae8.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-20 18:18:51', '2014-11-20 18:18:51', NULL),
(29, 78, 'Best Course XYZ', 'upload/d28e91a79ca5a4d2dcba2be7135bfcbf.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-20 18:25:53', '2014-11-20 18:25:53', NULL),
(30, 79, 'Best Course XYZ', 'upload/963d824103c81e16ec9858a508ff9b4d.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-20 18:27:00', '2014-11-20 18:27:00', NULL),
(31, 80, 'dgsgaga', 'upload/71ccdefd7f7e54a1a8930fbb3b45f45a.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-20 18:29:14', '2014-11-20 18:29:14', NULL),
(32, 80, 'dgsgaga', 'upload/21f313d0b96ea1a47f964b5977b0747a.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-20 18:29:34', '2014-11-20 18:29:34', NULL),
(33, 80, 'dgsgaga', 'upload/393f6fdc85e289b8251007237c916b10.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-20 18:29:41', '2014-11-20 18:29:41', NULL),
(34, 80, 'dgsgaga', 'upload/486c0616a4e33837c664c8dae7501ca7.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-20 18:31:05', '2014-11-20 18:31:05', NULL),
(35, 81, 'Best Course XYZ', 'upload/b6f2c273effe6a06ed6cffa4348c217d.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-20 18:32:51', '2014-11-20 18:32:51', NULL),
(36, 82, '_data_data_data', 'upload/99105f949ee2fe6de2783688da40678a.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-20 18:34:59', '2014-11-20 18:34:59', NULL),
(37, 83, 'Best Course XYZ', 'upload/9c2796ad865ef4b2fde11f03a3d100b8.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-20 18:36:09', '2014-11-20 18:36:09', NULL),
(38, 83, 'Best Course XYZ', 'upload/fe4d0c5a40535b6e96ae7c14979798a4.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-20 18:36:34', '2014-11-20 18:36:34', NULL),
(39, 83, 'Best Course XYZ', 'upload/a1902d363b35db695d385951597a7c0d.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-20 18:36:53', '2014-11-20 18:36:53', NULL),
(40, 83, 'Best Course XYZ', 'upload/51d361c4997332994a8ba2dde82eee56.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-20 18:37:35', '2014-11-20 18:37:35', NULL),
(41, 84, 'datadatadata', 'upload/d19242977b8665f13bb39afaa6a8923f.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-20 18:39:07', '2014-11-20 18:39:07', NULL),
(42, 85, 'datadata', 'upload/808e2a4816f45c83ff470badba925afa.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-20 18:40:42', '2014-11-20 18:40:42', NULL),
(43, 86, 'datadata', 'upload/386e2bf7d54a21d74d529c6a5a62df35.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-20 18:41:25', '2014-11-20 18:41:25', NULL),
(44, 86, 'xtagwe', 'upload/26e972ae7ab3857fd3dc3998c96d1057.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-20 18:41:40', '2014-11-20 18:41:40', NULL),
(45, 86, 'asdfafdafdsfa', 'upload/2d66c37820603af17e8f200e682583e5.mp4', NULL, NULL, NULL, NULL, NULL, '2014-11-20 18:41:55', '2014-11-20 18:41:55', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `quiz`
--
CREATE TABLE IF NOT EXISTS `quiz` (
`quiz_id` int(11) NOT NULL AUTO_INCREMENT,
`course_id` int(11) NOT NULL,
`quiz_title` varchar(255) NOT NULL,
`quiz_progress_points` int(20) DEFAULT NULL,
`created_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`updated_date` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`quiz_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=16 ;
--
-- Dumping data for table `quiz`
--
INSERT INTO `quiz` (`quiz_id`, `course_id`, `quiz_title`, `quiz_progress_points`, `created_date`, `updated_date`) VALUES
(1, 0, 'hgjhghjhj', NULL, '2014-11-11 15:54:50', '2014-11-11 15:54:50'),
(2, 0, 'bcvxbxcvb', NULL, '2014-11-11 15:56:54', '2014-11-11 15:56:54'),
(3, 1, 'Common Sense API', 20, '2014-11-15 08:47:39', '2014-11-11 17:00:58'),
(4, 0, '<?php echo Common Sense API; ?>', 20, '2014-11-11 17:02:03', '2014-11-11 17:02:03'),
(5, 5, 'Special Sense API', 20, '2014-11-18 14:21:12', '2014-11-11 17:08:14'),
(6, 3, 'Special Sense API', 20, '2014-11-18 14:21:15', '2014-11-11 17:09:15'),
(7, 0, 'xvxcxvvvvvxvx', 20, '2014-11-11 17:22:34', '2014-11-11 17:22:34'),
(8, 0, '8', 20, '2014-11-11 17:25:29', '2014-11-11 17:25:29'),
(9, 0, '9', 20, '2014-11-11 17:29:03', '2014-11-11 17:29:03'),
(10, 0, 'Consipiracy Quiz', 20, '2014-11-11 17:33:09', '2014-11-11 17:33:09'),
(11, 0, 'Pakistan Quiz', 20, '2014-11-11 17:43:43', '2014-11-11 17:43:43'),
(12, 0, 'Pakistan Quiz', 20, '2014-11-11 17:47:17', '2014-11-11 17:47:17'),
(13, 0, 'LOL Quiz', 20, '2014-11-11 17:48:03', '2014-11-11 17:48:03'),
(14, 0, 'LOL Quiz', 20, '2014-11-11 17:50:02', '2014-11-11 17:50:02'),
(15, 0, 'Fake Quiz', 20, '2014-11-11 17:51:35', '2014-11-11 17:51:35');
-- --------------------------------------------------------
--
-- Table structure for table `quiz_answers`
--
CREATE TABLE IF NOT EXISTS `quiz_answers` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`quiz_id` int(10) NOT NULL,
`user_id` int(10) NOT NULL,
`answer` varchar(100) NOT NULL,
`submittion_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`question_id` int(10) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=11 ;
--
-- Dumping data for table `quiz_answers`
--
INSERT INTO `quiz_answers` (`id`, `quiz_id`, `user_id`, `answer`, `submittion_date`, `question_id`) VALUES
(1, 3, 1, 'option_1', '2014-11-22 20:11:11', 2),
(2, 3, 1, 'option_2', '2014-11-22 20:11:11', 3),
(3, 3, 1, 'option_2', '2014-11-22 20:11:11', 6),
(4, 3, 1, 'option_1', '2014-11-22 20:11:11', 8),
(5, 3, 1, 'option_3', '2014-11-22 20:11:11', 9),
(6, 3, 1, 'option_4', '2014-11-22 20:11:11', 12),
(7, 3, 1, 'option_2', '2014-11-22 20:11:11', 13),
(8, 3, 1, 'option_4', '2014-11-22 20:11:11', 14),
(9, 3, 1, 'option_2', '2014-11-22 20:11:12', 25),
(10, 3, 1, 'option_2', '2014-11-22 20:11:12', 4);
-- --------------------------------------------------------
--
-- Table structure for table `quiz_questions`
--
CREATE TABLE IF NOT EXISTS `quiz_questions` (
`question_id` int(11) NOT NULL AUTO_INCREMENT,
`quiz_id` int(11) NOT NULL,
`question_text` varchar(255) NOT NULL,
`option_1` varchar(255) NOT NULL,
`option_2` varchar(255) NOT NULL,
`option_3` varchar(255) NOT NULL,
`option_4` varchar(255) NOT NULL,
`correct_answer` varchar(255) NOT NULL,
`created_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`updated_date` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`question_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=29 ;
--
-- Dumping data for table `quiz_questions`
--
INSERT INTO `quiz_questions` (`question_id`, `quiz_id`, `question_text`, `option_1`, `option_2`, `option_3`, `option_4`, `correct_answer`, `created_date`, `updated_date`) VALUES
(2, 3, 'asdfasdf', '0', '0', '0', '0', 'option_1', '2014-11-16 10:43:04', '2014-11-11 10:43:01'),
(3, 3, 'jfgjfghj', '0', '0', '0', '0', 'option_1', '2014-11-16 10:43:00', '2014-11-11 10:54:50'),
(4, 3, 'xbvbxvcb', 'xcvbxvc', 'bxcvbxcvb', 'xvcbxc', 'bxvcbxcvb', 'option_1', '2014-11-16 10:43:02', '2014-11-11 10:56:54'),
(5, 5, 'What comes after zero?', 'one', 'two ', 'three', 'four', 'option_1', '2014-11-18 14:21:32', '2014-11-11 12:00:59'),
(6, 3, 'What comes after Earth?', 'venus', 'earth', 'mars', 'jupiter', 'option_2', '2014-11-16 08:19:37', '2014-11-11 12:02:03'),
(7, 3, 'What came first?', 'Egg', 'Chicken', 'Kukkar', 'Aanda', 'option_3', '2014-11-16 10:43:20', '2014-11-11 12:08:14'),
(8, 3, 'What are you?', 'A dog', 'A man', 'A crow', 'A cat', 'option_2', '2014-11-16 08:19:56', '2014-11-11 12:09:15'),
(9, 3, 'dfdgfdgfgdf', 'gdfgdf', 'gdfgdfg', 'dfgfdgfd', 'gff', 'option_3', '2014-11-16 08:20:19', '2014-11-11 12:22:34'),
(10, 3, 'fadsasdfsdaf', 'asdfasdfasdfa', 'fgsdfasdf', 'asdfasdfasd', 'fasdfdsaf', 'option_2', '2014-11-16 08:20:02', '2014-11-11 12:25:29'),
(11, 3, 'asdfasdfa', 'sdfasdf', 'asdfasdfasd', 'asdfasdfasdf', 'asdfsdaf', 'option_3', '2014-11-16 10:43:22', '2014-11-11 12:25:48'),
(12, 3, 'HTML stands for?', 'Hathi', 'Hyper text terminal protocol', 'Hoohaaa', 'Hola', 'option_2', '2014-11-16 08:20:06', '2014-11-11 12:29:04'),
(13, 3, 'Who made the HTML?', 'Steve Jobs', 'Tim B. Lee', 'Bill Gates', 'You', 'option_3', '2014-11-16 08:20:25', '2014-11-11 12:29:41'),
(14, 3, 'Is Osama real?', 'yes', 'no', 'pata nahi', 'no comments', 'option_3', '2014-11-16 08:20:27', '2014-11-11 12:33:09'),
(15, 3, 'Where is George W Bush?', 'At home', 'Library', 'Underground Bunker', 'Afghanistan', 'option_3', '2014-11-16 08:20:31', '2014-11-11 12:33:54'),
(16, 0, 'Who is Zaid Hamid?', 'ISI Agent', 'Douchbag', 'RAW Agent', 'Musad Agent', 'option_3', '2014-11-16 10:43:25', '2014-11-11 12:35:00'),
(17, 0, 'Who killed BB?', 'Me', 'You', 'Zardari', 'Mush', 'option_2', '2014-11-16 10:43:37', '2014-11-11 12:36:29'),
(18, 0, 'Is ISIS real?', 'LOL', 'CIA created em', 'Yes', 'No way', 'option_2', '2014-11-16 10:43:36', '2014-11-11 12:38:59'),
(19, 15, 'Is Batman real?', 'aho', 'nai pata', 'lol', 'haan na bhai', 'option_3', '2014-11-16 10:43:28', '2014-11-11 12:51:35'),
(20, 15, 'Does Altaf bhai loves peace?', 'sure', 'lol', 'why not', 'most', 'option_4', '2014-11-16 10:43:52', '2014-11-11 12:52:15'),
(21, 15, 'Is IK pagal?', 'yeah ', 'sure is ', 'no ', 'to or kya', 'option_4', '2014-11-16 10:43:47', '2014-11-11 12:52:43'),
(22, 15, 'Who made Apple?', 'newton', 'steve jobs', 'einstine', 'billy', 'option_2', '2014-11-16 10:43:39', '2014-11-11 12:53:13'),
(23, 5, 'What is name of President of Pakistan.', 'Asif Ali Zardari', 'Nawaz Sharif', 'Imran Khan', 'Parvez Musharraf', 'option_3', '2014-11-18 14:20:26', '2014-11-11 10:40:37'),
(24, 3, 'asdfasdf', '0', '0', '0', '0', 'option_3', '2014-11-16 08:20:47', '2014-11-11 10:43:01'),
(25, 3, 'What is name of President of Pakistan.', 'Asif Ali Zardari', 'Nawaz Sharif', 'Imran Khan', 'Parvez Musharraf', 'option_3', '2014-11-16 08:20:49', '2014-11-11 10:40:37'),
(26, 3, 'What came first?', 'Egg', 'Chicken', 'Kukkar', 'Aanda', 'option_3', '2014-11-16 08:20:40', '2014-11-11 12:08:14'),
(27, 3, 'What comes after Earth?', 'venus', 'earth', 'mars', 'jupiter', 'option_3', '2014-11-16 08:20:38', '2014-11-11 12:02:03'),
(28, 3, 'What is name of President of Pakistan.', 'Asif Ali Zardari', 'Nawaz Sharif', 'Imran Khan', 'Parvez Musharraf', 'option_3', '2014-11-16 08:20:37', '2014-11-11 10:40:37');
-- --------------------------------------------------------
--
-- Table structure for table `tracks`
--
CREATE TABLE IF NOT EXISTS `tracks` (
`track_id` int(11) NOT NULL AUTO_INCREMENT,
`track_title` varchar(255) NOT NULL,
`tiny_intro` varchar(255) NOT NULL,
`track_description` text NOT NULL,
`status` enum('yes','no') NOT NULL,
`track_points` int(10) NOT NULL,
`track_progress` int(20) NOT NULL,
`difficulty_level` enum('Beginner','Intermediate','Advanced') NOT NULL,
`is_new` enum('yes','no') DEFAULT NULL,
`additional_file_title` varchar(255) DEFAULT NULL,
`additional_file_path` varchar(255) DEFAULT NULL,
`created_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`created_by` int(11) NOT NULL,
PRIMARY KEY (`track_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=23 ;
--
-- Dumping data for table `tracks`
--
INSERT INTO `tracks` (`track_id`, `track_title`, `tiny_intro`, `track_description`, `status`, `track_points`, `track_progress`, `difficulty_level`, `is_new`, `additional_file_title`, `additional_file_path`, `created_date`, `updated_date`, `created_by`) VALUES
(1, 'Learn Basic Web Development', 'Easy learning starting from basic and leading to advanced topics.', 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas at leo eget nisl porta viverra. Ut laoreet, dui at tempus vestibulum, eros leo egestas neque, id adipiscing odio eros et lectus. Vivamus pretium lorem sit amet nulla. Praesent nec dolor at augue ultrices blandit. Quisque aliquet ultrices mi.Donec ac nibh. Phasellus sed sem sed mauris mattis laoreet. Ut fermentum augue ac pede. Duis vitae augue sed nulla lacinia tempor. Pellentesque non ante in magna tincidunt malesuada.', 'yes', 100, 0, 'Beginner', NULL, 'Additional File ABC DEF ', NULL, '2014-11-15 17:15:52', '2014-11-15 17:15:52', 1),
(2, 'Learn Web Design', 'Learn HTML and CSS, the building blocks of websites', 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas at leo eget nisl porta viverra. Ut laoreet, dui at tempus vestibulum, eros leo egestas neque, id adipiscing odio eros et lectus. Vivamus pretium lorem sit amet nulla. Praesent nec dolor at augue ultrices blandit. Quisque aliquet ultrices mi.Donec ac nibh. Phasellus sed sem sed mauris mattis laoreet. Ut fermentum augue ac pede. Duis vitae augue sed nulla lacinia tempor. Pellentesque non ante in magna tincidunt malesuada.', 'yes', 100, 0, 'Beginner', '', 'Addt. File # 1', '0', '2014-11-15 17:34:34', '2014-11-15 17:34:34', 1),
(4, 'Learn PHP Development', 'Maecenas at leo eget nisl porta viverra.', 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas at leo eget nisl porta viverra. Ut laoreet, dui at tempus vestibulum, eros leo egestas neque, id adipiscing odio eros et lectus. Vivamus pretium lorem sit amet nulla. Praesent nec dolor at augue ultrices blandit. Quisque aliquet ultrices mi.Donec ac nibh. Phasellus sed sem sed mauris mattis laoreet. Ut fermentum augue ac pede. Duis vitae augue sed nulla lacinia tempor. Pellentesque non ante in magna tincidunt malesuada.', 'yes', 100, 0, 'Advanced', '', 'Additional File ABC DEF ', '0', '2014-11-15 17:37:18', '2014-11-15 17:37:18', 1),
(5, 'Learn Android Development', 'Maecenas at leo eget nisl porta viverra.', 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas at leo eget nisl porta viverra. Ut laoreet, dui at tempus vestibulum, eros leo egestas neque, id adipiscing odio eros et lectus. Vivamus pretium lorem sit amet nulla. Praesent nec dolor at augue ultrices blandit. Quisque aliquet ultrices mi.Donec ac nibh. Phasellus sed sem sed mauris mattis laoreet. Ut fermentum augue ac pede. Duis vitae augue sed nulla lacinia tempor. Pellentesque non ante in magna tincidunt malesuada.', 'yes', 100, 0, 'Intermediate', '', 'Additional File ABC DEF ', '0', '2014-11-15 17:38:13', '2014-11-15 17:38:13', 1),
(6, 'Learn Wordpress Development', 'Maecenas at leo eget nisl porta viverra.', 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas at leo eget nisl porta viverra. Ut laoreet, dui at tempus vestibulum, eros leo egestas neque, id adipiscing odio eros et lectus. Vivamus pretium lorem sit amet nulla. Praesent nec dolor at augue ultrices blandit. Quisque aliquet ultrices mi.Donec ac nibh. Phasellus sed sem sed mauris mattis laoreet. Ut fermentum augue ac pede. Duis vitae augue sed nulla lacinia tempor. Pellentesque non ante in magna tincidunt malesuada.', 'yes', 100, 0, 'Advanced', '', 'Additional File ABC DEF ', '0', '2014-11-15 17:38:33', '2014-11-15 17:38:33', 1),
(7, 'Starting a Business', 'Maecenas at leo eget nisl porta viverra', 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas at leo eget nisl porta viverra. Ut laoreet, dui at tempus vestibulum, eros leo egestas neque, id adipiscing odio eros et lectus. Vivamus pretium lorem sit amet nulla. Praesent nec dolor at augue ultrices blandit. Quisque aliquet ultrices mi.Donec ac nibh. Phasellus sed sem sed mauris mattis laoreet. Ut fermentum augue ac pede. Duis vitae augue sed nulla lacinia tempor. Pellentesque non ante in magna tincidunt malesuada.', 'yes', 100, 0, 'Intermediate', '', 'Additional File ABC DEF ', '0', '2014-11-15 17:38:59', '2014-11-15 17:38:59', 1),
(8, 'Learn Wordpress', 'Maecenas at leo eget nisl porta viverra', '\r\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas at leo eget nisl porta viverra. Ut laoreet, dui at tempus vestibulum, eros leo egestas neque, id adipiscing odio eros et lectus. Vivamus pretium lorem sit amet nulla. Praesent nec dolor at augue ultrices blandit. Quisque aliquet ultrices mi.Donec ac nibh. Phasellus sed sem sed mauris mattis laoreet. Ut fermentum augue ac pede. Duis vitae augue sed nulla lacinia tempor. Pellentesque non ante in magna tincidunt malesuada.', 'yes', 100, 0, 'Beginner', '', 'Additional File ABC DEF ', '0', '2014-11-15 17:39:29', '2014-11-15 17:39:29', 1),
(9, 'Learn Python', 'Maecenas at leo eget nisl porta viverra', 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas at leo eget nisl porta viverra. Ut laoreet, dui at tempus vestibulum, eros leo egestas neque, id adipiscing odio eros et lectus. Vivamus pretium lorem sit amet nulla. Praesent nec dolor at augue ultrices blandit. Quisque aliquet ultrices mi.Donec ac nibh. Phasellus sed sem sed mauris mattis laoreet. Ut fermentum augue ac pede. Duis vitae augue sed nulla lacinia tempor. Pellentesque non ante in magna tincidunt malesuada.', 'yes', 100, 0, 'Advanced', '', 'Additional File ABC DEF ', '0', '2014-11-15 17:42:44', '2014-11-15 17:42:44', 1),
(10, 'Learn Freelancing', 'Maecenas at leo eget nisl porta viverra', 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas at leo eget nisl porta viverra. Ut laoreet, dui at tempus vestibulum, eros leo egestas neque, id adipiscing odio eros et lectus. Vivamus pretium lorem sit amet nulla. Praesent nec dolor at augue ultrices blandit. Quisque aliquet ultrices mi.Donec ac nibh. Phasellus sed sem sed mauris mattis laoreet. Ut fermentum augue ac pede. Duis vitae augue sed nulla lacinia tempor. Pellentesque non ante in magna tincidunt malesuada.', 'yes', 100, 0, 'Intermediate', '', 'Additional File ABC DEF ', '0', '2014-11-15 17:44:43', '2014-11-15 17:44:43', 1),
(11, 'asdfasfd', 'sdfasdf', 'adfsdf', 'yes', 100, 0, 'Beginner', '', 'adfsaf', '', '2014-11-23 14:13:21', '2014-11-23 14:13:21', 1),
(12, 'Some New Track', 'Some New Track', 'Some New TrackSome New TrackSome New Track Desc', 'yes', 100, 0, 'Advanced', '', 'Notes', '', '2014-11-23 14:23:07', '2014-11-23 14:23:07', 1),
(13, 'Some New Track', 'Some New Track', 'Some New TrackSome New TrackSome New Track Desc', 'yes', 100, 0, 'Advanced', '', 'Notes', '', '2014-11-23 14:24:12', '2014-11-23 14:24:12', 1),
(14, 'Some New Track', 'Some New Track', 'Some New TrackSome New TrackSome New Track', 'yes', 100, 0, 'Beginner', '', 'Some New TrackSome New TrackSome New Track', '', '2014-11-23 14:26:06', '2014-11-23 14:26:06', 1),
(15, 'Some New Track', 'Some New Track', 'Some New TrackSome New TrackSome New Track', 'yes', 100, 0, 'Beginner', '', 'Some New TrackSome New TrackSome New Track', '', '2014-11-23 14:27:21', '2014-11-23 14:27:21', 1),
(16, 'Some New Track', 'Some New Track', 'Some New TrackSome New TrackSome New Track', 'yes', 100, 0, 'Beginner', '', 'Some New TrackSome New TrackSome New Track', '', '2014-11-23 14:27:54', '2014-11-23 14:27:54', 1),
(17, 'Some New TrackSome New TrackSome New Track', 'Some New TrackSome New TrackSome New Track', 'Some New TrackSome New TrackSome New Track', 'yes', 100, 0, 'Beginner', '', 'Some New TrackSome New TrackSome New Track', '', '2014-11-23 14:28:30', '2014-11-23 14:28:30', 1),
(18, 'Some New TrackSome New TrackSome New Track', 'Some New TrackSome New TrackSome New Track', 'Some New TrackSome New TrackSome New Track', 'yes', 100, 0, 'Beginner', '', 'Some New TrackSome New TrackSome New Track', '', '2014-11-23 14:29:55', '2014-11-23 14:29:55', 1),
(19, 'ewgegwegweg', 'ewgegwegweg', 'ewgegwegwegewgegwegwegewgegwegweg', 'yes', 100, 0, 'Intermediate', '', 'ewgegwegwegewgegwegweg', '', '2014-11-23 14:30:16', '2014-11-23 14:30:16', 1),
(20, 'ewgegwegweg', 'ewgegwegweg', 'ewgegwegwegewgegwegwegewgegwegweg', 'yes', 100, 0, 'Intermediate', '', 'ewgegwegwegewgegwegweg', 'upload/685f010b54c11b592919628a9108752b.zip', '2014-11-23 14:31:06', '2014-11-23 14:31:06', 1),
(21, 'She', 'SheSheSheSheShe', 'SheSheShe', 'yes', 100, 0, 'Advanced', '', 'SheSheSheShe', 'upload/e17fc174f4b61857c5b9a3d89e2056f2.zip', '2014-11-23 14:38:02', '2014-11-23 14:38:02', 1),
(22, '43y2y24y24y', '2y4y43y3', 'ewgwegewgwgeg', 'yes', 100, 0, 'Beginner', '', 'fewfwefewf', 'upload/843cd34d6b1133dd923e3ffefceee4d0.zip', '2014-11-23 17:05:47', '2014-11-23 17:05:47', 1);
-- --------------------------------------------------------
--
-- Table structure for table `tracks_enrollment`
--
CREATE TABLE IF NOT EXISTS `tracks_enrollment` (
`track_enrol_id` int(11) NOT NULL AUTO_INCREMENT,
`track_id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`track_enrol_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`status` enum('in-progress','cancelled','completed') NOT NULL,
`progress` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`track_enrol_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=45 ;
--
-- Dumping data for table `tracks_enrollment`
--
INSERT INTO `tracks_enrollment` (`track_enrol_id`, `track_id`, `user_id`, `track_enrol_time`, `status`, `progress`) VALUES
(39, 2, 6, '2014-11-22 07:35:09', 'in-progress', 0),
(40, 1, 6, '2014-11-22 07:49:48', 'in-progress', 0),
(41, 5, 80, '2014-11-22 08:14:15', 'in-progress', 0),
(42, 1, 80, '2014-11-22 08:14:33', 'in-progress', 0),
(43, 4, 6, '2014-11-22 11:36:28', 'in-progress', 0),
(44, 22, 1, '2014-11-23 17:07:30', 'in-progress', 0);
-- --------------------------------------------------------
--
-- Table structure for table `track_content`
--
CREATE TABLE IF NOT EXISTS `track_content` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`track_id` int(11) NOT NULL,
`course_id` int(11) NOT NULL,
`course_index` int(10) NOT NULL,
`created_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`created_by` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=233 ;
--
-- Dumping data for table `track_content`
--
INSERT INTO `track_content` (`id`, `track_id`, `course_id`, `course_index`, `created_date`, `updated_date`, `created_by`) VALUES
(1, 1, 1, 1, '2014-11-17 14:41:29', '2014-11-17 14:41:29', 0),
(2, 1, 2, 2, '2014-11-17 14:41:29', '2014-11-17 14:41:29', 0),
(3, 1, 3, 3, '2014-11-17 14:41:29', '2014-11-17 14:41:29', 0),
(4, 2, 2, 2, '2014-11-17 14:41:29', '2014-11-17 14:41:29', 0),
(5, 3, 2, 2, '2014-11-17 14:41:29', '2014-11-17 14:41:29', 0),
(6, 11, 1, 1, '2014-11-23 14:13:21', '2014-11-23 14:13:21', 1),
(7, 11, 2, 2, '2014-11-23 14:13:21', '2014-11-23 14:13:21', 1),
(8, 11, 3, 3, '2014-11-23 14:13:21', '2014-11-23 14:13:21', 1),
(9, 11, 5, 4, '2014-11-23 14:13:21', '2014-11-23 14:13:21', 1),
(10, 11, 9, 5, '2014-11-23 14:13:21', '2014-11-23 14:13:21', 1),
(31, 12, 21, 21, '2014-11-23 14:23:08', '2014-11-23 14:23:08', 1),
(32, 12, 22, 22, '2014-11-23 14:23:08', '2014-11-23 14:23:08', 1),
(33, 12, 23, 23, '2014-11-23 14:23:08', '2014-11-23 14:23:08', 1),
(34, 12, 24, 24, '2014-11-23 14:23:08', '2014-11-23 14:23:08', 1),
(35, 12, 25, 25, '2014-11-23 14:23:08', '2014-11-23 14:23:08', 1),
(36, 12, 26, 26, '2014-11-23 14:23:08', '2014-11-23 14:23:08', 1),
(37, 12, 27, 27, '2014-11-23 14:23:08', '2014-11-23 14:23:08', 1),
(38, 12, 28, 28, '2014-11-23 14:23:09', '2014-11-23 14:23:09', 1),
(39, 12, 29, 29, '2014-11-23 14:23:09', '2014-11-23 14:23:09', 1),
(40, 12, 30, 30, '2014-11-23 14:23:09', '2014-11-23 14:23:09', 1),
(41, 12, 31, 31, '2014-11-23 14:23:09', '2014-11-23 14:23:09', 1),
(42, 12, 32, 32, '2014-11-23 14:23:09', '2014-11-23 14:23:09', 1),
(43, 12, 33, 33, '2014-11-23 14:23:09', '2014-11-23 14:23:09', 1),
(44, 12, 34, 34, '2014-11-23 14:23:09', '2014-11-23 14:23:09', 1),
(45, 12, 35, 35, '2014-11-23 14:23:09', '2014-11-23 14:23:09', 1),
(46, 12, 36, 36, '2014-11-23 14:23:09', '2014-11-23 14:23:09', 1),
(47, 12, 37, 37, '2014-11-23 14:23:09', '2014-11-23 14:23:09', 1),
(48, 12, 38, 38, '2014-11-23 14:23:09', '2014-11-23 14:23:09', 1),
(49, 12, 39, 39, '2014-11-23 14:23:09', '2014-11-23 14:23:09', 1),
(50, 12, 40, 40, '2014-11-23 14:23:09', '2014-11-23 14:23:09', 1),
(51, 12, 41, 41, '2014-11-23 14:23:09', '2014-11-23 14:23:09', 1),
(52, 12, 42, 42, '2014-11-23 14:23:09', '2014-11-23 14:23:09', 1),
(53, 12, 43, 43, '2014-11-23 14:23:09', '2014-11-23 14:23:09', 1),
(54, 12, 44, 44, '2014-11-23 14:23:09', '2014-11-23 14:23:09', 1),
(55, 12, 45, 45, '2014-11-23 14:23:09', '2014-11-23 14:23:09', 1),
(56, 12, 46, 46, '2014-11-23 14:23:09', '2014-11-23 14:23:09', 1),
(57, 12, 47, 47, '2014-11-23 14:23:09', '2014-11-23 14:23:09', 1),
(58, 12, 48, 48, '2014-11-23 14:23:09', '2014-11-23 14:23:09', 1),
(59, 12, 49, 49, '2014-11-23 14:23:10', '2014-11-23 14:23:10', 1),
(60, 12, 50, 50, '2014-11-23 14:23:10', '2014-11-23 14:23:10', 1),
(61, 12, 51, 51, '2014-11-23 14:23:10', '2014-11-23 14:23:10', 1),
(62, 12, 52, 52, '2014-11-23 14:23:10', '2014-11-23 14:23:10', 1),
(63, 12, 53, 53, '2014-11-23 14:23:10', '2014-11-23 14:23:10', 1),
(64, 12, 54, 54, '2014-11-23 14:23:10', '2014-11-23 14:23:10', 1),
(65, 12, 55, 55, '2014-11-23 14:23:10', '2014-11-23 14:23:10', 1),
(66, 12, 56, 56, '2014-11-23 14:23:10', '2014-11-23 14:23:10', 1),
(67, 12, 57, 57, '2014-11-23 14:23:10', '2014-11-23 14:23:10', 1),
(68, 12, 58, 58, '2014-11-23 14:23:10', '2014-11-23 14:23:10', 1),
(69, 12, 59, 59, '2014-11-23 14:23:10', '2014-11-23 14:23:10', 1),
(70, 12, 60, 60, '2014-11-23 14:23:10', '2014-11-23 14:23:10', 1),
(71, 12, 61, 61, '2014-11-23 14:23:10', '2014-11-23 14:23:10', 1),
(72, 12, 62, 62, '2014-11-23 14:23:10', '2014-11-23 14:23:10', 1),
(73, 12, 63, 63, '2014-11-23 14:23:10', '2014-11-23 14:23:10', 1),
(74, 12, 64, 64, '2014-11-23 14:23:10', '2014-11-23 14:23:10', 1),
(75, 12, 65, 65, '2014-11-23 14:23:10', '2014-11-23 14:23:10', 1),
(76, 12, 66, 66, '2014-11-23 14:23:10', '2014-11-23 14:23:10', 1),
(77, 12, 67, 67, '2014-11-23 14:23:10', '2014-11-23 14:23:10', 1),
(78, 12, 68, 68, '2014-11-23 14:23:10', '2014-11-23 14:23:10', 1),
(79, 12, 69, 69, '2014-11-23 14:23:10', '2014-11-23 14:23:10', 1),
(80, 12, 70, 70, '2014-11-23 14:23:10', '2014-11-23 14:23:10', 1),
(81, 12, 71, 71, '2014-11-23 14:23:11', '2014-11-23 14:23:11', 1),
(82, 12, 72, 72, '2014-11-23 14:23:11', '2014-11-23 14:23:11', 1),
(83, 12, 73, 73, '2014-11-23 14:23:11', '2014-11-23 14:23:11', 1),
(84, 12, 74, 74, '2014-11-23 14:23:11', '2014-11-23 14:23:11', 1),
(85, 12, 75, 75, '2014-11-23 14:23:11', '2014-11-23 14:23:11', 1),
(86, 12, 76, 76, '2014-11-23 14:23:11', '2014-11-23 14:23:11', 1),
(87, 12, 77, 77, '2014-11-23 14:23:11', '2014-11-23 14:23:11', 1),
(88, 12, 78, 78, '2014-11-23 14:23:11', '2014-11-23 14:23:11', 1),
(89, 12, 79, 79, '2014-11-23 14:23:11', '2014-11-23 14:23:11', 1),
(90, 12, 80, 80, '2014-11-23 14:23:11', '2014-11-23 14:23:11', 1),
(91, 12, 81, 81, '2014-11-23 14:23:11', '2014-11-23 14:23:11', 1),
(92, 12, 82, 82, '2014-11-23 14:23:12', '2014-11-23 14:23:12', 1),
(93, 12, 83, 83, '2014-11-23 14:23:12', '2014-11-23 14:23:12', 1),
(94, 12, 84, 84, '2014-11-23 14:23:12', '2014-11-23 14:23:12', 1),
(95, 12, 85, 85, '2014-11-23 14:23:12', '2014-11-23 14:23:12', 1),
(96, 12, 86, 86, '2014-11-23 14:23:12', '2014-11-23 14:23:12', 1),
(97, 13, 1, 1, '2014-11-23 14:24:12', '2014-11-23 14:24:12', 1),
(98, 13, 2, 2, '2014-11-23 14:24:12', '2014-11-23 14:24:12', 1),
(99, 13, 3, 3, '2014-11-23 14:24:12', '2014-11-23 14:24:12', 1),
(100, 13, 4, 4, '2014-11-23 14:24:12', '2014-11-23 14:24:12', 1),
(101, 13, 5, 5, '2014-11-23 14:24:12', '2014-11-23 14:24:12', 1),
(102, 13, 6, 6, '2014-11-23 14:24:12', '2014-11-23 14:24:12', 1),
(103, 13, 7, 7, '2014-11-23 14:24:12', '2014-11-23 14:24:12', 1),
(104, 13, 8, 8, '2014-11-23 14:24:12', '2014-11-23 14:24:12', 1),
(105, 13, 9, 9, '2014-11-23 14:24:12', '2014-11-23 14:24:12', 1),
(106, 13, 10, 10, '2014-11-23 14:24:12', '2014-11-23 14:24:12', 1),
(107, 13, 11, 11, '2014-11-23 14:24:12', '2014-11-23 14:24:12', 1),
(108, 13, 12, 12, '2014-11-23 14:24:12', '2014-11-23 14:24:12', 1),
(109, 13, 13, 13, '2014-11-23 14:24:12', '2014-11-23 14:24:12', 1),
(110, 13, 14, 14, '2014-11-23 14:24:12', '2014-11-23 14:24:12', 1),
(111, 13, 15, 15, '2014-11-23 14:24:13', '2014-11-23 14:24:13', 1),
(112, 13, 16, 16, '2014-11-23 14:24:13', '2014-11-23 14:24:13', 1),
(113, 13, 17, 17, '2014-11-23 14:24:13', '2014-11-23 14:24:13', 1),
(114, 13, 18, 18, '2014-11-23 14:24:13', '2014-11-23 14:24:13', 1),
(115, 13, 19, 19, '2014-11-23 14:24:13', '2014-11-23 14:24:13', 1),
(116, 13, 20, 20, '2014-11-23 14:24:13', '2014-11-23 14:24:13', 1),
(117, 13, 21, 21, '2014-11-23 14:24:13', '2014-11-23 14:24:13', 1),
(118, 13, 22, 22, '2014-11-23 14:24:13', '2014-11-23 14:24:13', 1),
(119, 13, 23, 23, '2014-11-23 14:24:13', '2014-11-23 14:24:13', 1),
(120, 13, 24, 24, '2014-11-23 14:24:13', '2014-11-23 14:24:13', 1),
(121, 13, 25, 25, '2014-11-23 14:24:13', '2014-11-23 14:24:13', 1),
(122, 13, 26, 26, '2014-11-23 14:24:13', '2014-11-23 14:24:13', 1),
(123, 13, 27, 27, '2014-11-23 14:24:13', '2014-11-23 14:24:13', 1),
(124, 13, 28, 28, '2014-11-23 14:24:13', '2014-11-23 14:24:13', 1),
(125, 13, 29, 29, '2014-11-23 14:24:13', '2014-11-23 14:24:13', 1),
(126, 13, 30, 30, '2014-11-23 14:24:13', '2014-11-23 14:24:13', 1),
(127, 13, 31, 31, '2014-11-23 14:24:13', '2014-11-23 14:24:13', 1),
(128, 13, 32, 32, '2014-11-23 14:24:13', '2014-11-23 14:24:13', 1),
(129, 13, 33, 33, '2014-11-23 14:24:13', '2014-11-23 14:24:13', 1),
(130, 13, 34, 34, '2014-11-23 14:24:13', '2014-11-23 14:24:13', 1),
(131, 13, 35, 35, '2014-11-23 14:24:14', '2014-11-23 14:24:14', 1),
(132, 13, 36, 36, '2014-11-23 14:24:14', '2014-11-23 14:24:14', 1),
(133, 13, 37, 37, '2014-11-23 14:24:14', '2014-11-23 14:24:14', 1),
(134, 13, 38, 38, '2014-11-23 14:24:14', '2014-11-23 14:24:14', 1),
(135, 13, 39, 39, '2014-11-23 14:24:14', '2014-11-23 14:24:14', 1),
(136, 13, 40, 40, '2014-11-23 14:24:14', '2014-11-23 14:24:14', 1),
(137, 13, 41, 41, '2014-11-23 14:24:14', '2014-11-23 14:24:14', 1),
(138, 13, 42, 42, '2014-11-23 14:24:14', '2014-11-23 14:24:14', 1),
(139, 13, 43, 43, '2014-11-23 14:24:14', '2014-11-23 14:24:14', 1),
(140, 13, 44, 44, '2014-11-23 14:24:14', '2014-11-23 14:24:14', 1),
(141, 13, 45, 45, '2014-11-23 14:24:14', '2014-11-23 14:24:14', 1),
(142, 13, 46, 46, '2014-11-23 14:24:14', '2014-11-23 14:24:14', 1),
(143, 13, 47, 47, '2014-11-23 14:24:14', '2014-11-23 14:24:14', 1),
(144, 13, 48, 48, '2014-11-23 14:24:14', '2014-11-23 14:24:14', 1),
(145, 13, 49, 49, '2014-11-23 14:24:14', '2014-11-23 14:24:14', 1),
(146, 13, 50, 50, '2014-11-23 14:24:14', '2014-11-23 14:24:14', 1),
(147, 13, 51, 51, '2014-11-23 14:24:14', '2014-11-23 14:24:14', 1),
(148, 13, 52, 52, '2014-11-23 14:24:14', '2014-11-23 14:24:14', 1),
(149, 13, 53, 53, '2014-11-23 14:24:14', '2014-11-23 14:24:14', 1),
(150, 13, 54, 54, '2014-11-23 14:24:15', '2014-11-23 14:24:15', 1),
(151, 13, 55, 55, '2014-11-23 14:24:15', '2014-11-23 14:24:15', 1),
(152, 13, 56, 56, '2014-11-23 14:24:15', '2014-11-23 14:24:15', 1),
(153, 13, 57, 57, '2014-11-23 14:24:15', '2014-11-23 14:24:15', 1),
(154, 13, 58, 58, '2014-11-23 14:24:15', '2014-11-23 14:24:15', 1),
(155, 13, 59, 59, '2014-11-23 14:24:15', '2014-11-23 14:24:15', 1),
(156, 13, 60, 60, '2014-11-23 14:24:15', '2014-11-23 14:24:15', 1),
(157, 13, 61, 61, '2014-11-23 14:24:15', '2014-11-23 14:24:15', 1),
(158, 13, 62, 62, '2014-11-23 14:24:15', '2014-11-23 14:24:15', 1),
(159, 13, 63, 63, '2014-11-23 14:24:15', '2014-11-23 14:24:15', 1),
(160, 13, 64, 64, '2014-11-23 14:24:15', '2014-11-23 14:24:15', 1),
(161, 13, 65, 65, '2014-11-23 14:24:15', '2014-11-23 14:24:15', 1),
(162, 13, 66, 66, '2014-11-23 14:24:15', '2014-11-23 14:24:15', 1),
(163, 13, 67, 67, '2014-11-23 14:24:15', '2014-11-23 14:24:15', 1),
(164, 13, 68, 68, '2014-11-23 14:24:15', '2014-11-23 14:24:15', 1),
(165, 13, 69, 69, '2014-11-23 14:24:15', '2014-11-23 14:24:15', 1),
(166, 13, 70, 70, '2014-11-23 14:24:15', '2014-11-23 14:24:15', 1),
(167, 13, 71, 71, '2014-11-23 14:24:15', '2014-11-23 14:24:15', 1),
(168, 13, 72, 72, '2014-11-23 14:24:16', '2014-11-23 14:24:16', 1),
(169, 13, 73, 73, '2014-11-23 14:24:16', '2014-11-23 14:24:16', 1),
(170, 13, 74, 74, '2014-11-23 14:24:16', '2014-11-23 14:24:16', 1),
(171, 13, 75, 75, '2014-11-23 14:24:16', '2014-11-23 14:24:16', 1),
(172, 13, 76, 76, '2014-11-23 14:24:16', '2014-11-23 14:24:16', 1),
(173, 13, 77, 77, '2014-11-23 14:24:16', '2014-11-23 14:24:16', 1),
(174, 13, 78, 78, '2014-11-23 14:24:16', '2014-11-23 14:24:16', 1),
(175, 13, 79, 79, '2014-11-23 14:24:16', '2014-11-23 14:24:16', 1),
(176, 13, 80, 80, '2014-11-23 14:24:16', '2014-11-23 14:24:16', 1),
(177, 13, 81, 81, '2014-11-23 14:24:16', '2014-11-23 14:24:16', 1),
(178, 13, 82, 82, '2014-11-23 14:24:16', '2014-11-23 14:24:16', 1),
(179, 13, 83, 83, '2014-11-23 14:24:16', '2014-11-23 14:24:16', 1),
(180, 13, 84, 84, '2014-11-23 14:24:16', '2014-11-23 14:24:16', 1),
(183, 14, 1, 1, '2014-11-23 14:26:06', '2014-11-23 14:26:06', 1),
(184, 14, 2, 2, '2014-11-23 14:26:06', '2014-11-23 14:26:06', 1),
(185, 14, 3, 3, '2014-11-23 14:26:06', '2014-11-23 14:26:06', 1),
(186, 14, 4, 4, '2014-11-23 14:26:06', '2014-11-23 14:26:06', 1),
(187, 14, 5, 5, '2014-11-23 14:26:06', '2014-11-23 14:26:06', 1),
(188, 14, 6, 6, '2014-11-23 14:26:06', '2014-11-23 14:26:06', 1),
(189, 15, 1, 1, '2014-11-23 14:27:22', '2014-11-23 14:27:22', 1),
(190, 15, 2, 2, '2014-11-23 14:27:22', '2014-11-23 14:27:22', 1),
(191, 15, 3, 3, '2014-11-23 14:27:22', '2014-11-23 14:27:22', 1),
(192, 15, 4, 4, '2014-11-23 14:27:22', '2014-11-23 14:27:22', 1),
(193, 15, 5, 5, '2014-11-23 14:27:22', '2014-11-23 14:27:22', 1),
(194, 15, 6, 6, '2014-11-23 14:27:22', '2014-11-23 14:27:22', 1),
(195, 16, 1, 1, '2014-11-23 14:27:54', '2014-11-23 14:27:54', 1),
(196, 16, 2, 2, '2014-11-23 14:27:54', '2014-11-23 14:27:54', 1),
(197, 16, 3, 3, '2014-11-23 14:27:55', '2014-11-23 14:27:55', 1),
(198, 16, 4, 4, '2014-11-23 14:27:55', '2014-11-23 14:27:55', 1),
(199, 16, 5, 5, '2014-11-23 14:27:55', '2014-11-23 14:27:55', 1),
(200, 16, 6, 6, '2014-11-23 14:27:55', '2014-11-23 14:27:55', 1),
(201, 17, 1, 1, '2014-11-23 14:28:30', '2014-11-23 14:28:30', 1),
(202, 17, 2, 2, '2014-11-23 14:28:30', '2014-11-23 14:28:30', 1),
(203, 17, 3, 3, '2014-11-23 14:28:30', '2014-11-23 14:28:30', 1),
(204, 17, 4, 4, '2014-11-23 14:28:30', '2014-11-23 14:28:30', 1),
(205, 17, 5, 5, '2014-11-23 14:28:30', '2014-11-23 14:28:30', 1),
(206, 17, 6, 6, '2014-11-23 14:28:30', '2014-11-23 14:28:30', 1),
(207, 17, 7, 7, '2014-11-23 14:28:30', '2014-11-23 14:28:30', 1),
(208, 18, 1, 1, '2014-11-23 14:29:55', '2014-11-23 14:29:55', 1),
(209, 18, 2, 2, '2014-11-23 14:29:55', '2014-11-23 14:29:55', 1),
(210, 18, 3, 3, '2014-11-23 14:29:55', '2014-11-23 14:29:55', 1),
(211, 18, 4, 4, '2014-11-23 14:29:55', '2014-11-23 14:29:55', 1),
(212, 18, 5, 5, '2014-11-23 14:29:55', '2014-11-23 14:29:55', 1),
(213, 18, 6, 6, '2014-11-23 14:29:55', '2014-11-23 14:29:55', 1),
(214, 18, 7, 7, '2014-11-23 14:29:55', '2014-11-23 14:29:55', 1),
(215, 19, 1, 1, '2014-11-23 14:30:16', '2014-11-23 14:30:16', 1),
(216, 19, 2, 2, '2014-11-23 14:30:16', '2014-11-23 14:30:16', 1),
(217, 19, 3, 3, '2014-11-23 14:30:17', '2014-11-23 14:30:17', 1),
(218, 19, 4, 4, '2014-11-23 14:30:17', '2014-11-23 14:30:17', 1),
(219, 20, 1, 1, '2014-11-23 14:31:06', '2014-11-23 14:31:06', 1),
(220, 20, 2, 2, '2014-11-23 14:31:06', '2014-11-23 14:31:06', 1),
(221, 20, 3, 3, '2014-11-23 14:31:06', '2014-11-23 14:31:06', 1),
(222, 20, 4, 4, '2014-11-23 14:31:06', '2014-11-23 14:31:06', 1),
(223, 21, 4, 1, '2014-11-23 14:38:02', '2014-11-23 14:38:02', 1),
(224, 21, 5, 2, '2014-11-23 14:38:02', '2014-11-23 14:38:02', 1),
(225, 21, 6, 3, '2014-11-23 14:38:02', '2014-11-23 14:38:02', 1),
(226, 21, 7, 4, '2014-11-23 14:38:02', '2014-11-23 14:38:02', 1),
(227, 21, 8, 5, '2014-11-23 14:38:02', '2014-11-23 14:38:02', 1),
(228, 22, 4, 1, '2014-11-23 17:05:47', '2014-11-23 17:05:47', 3),
(229, 22, 5, 2, '2014-11-23 17:05:47', '2014-11-23 17:05:47', 3),
(230, 22, 6, 3, '2014-11-23 17:05:47', '2014-11-23 17:05:47', 3),
(231, 22, 7, 4, '2014-11-23 17:05:47', '2014-11-23 17:05:47', 3),
(232, 22, 8, 5, '2014-11-23 17:05:47', '2014-11-23 17:05:47', 3);
-- --------------------------------------------------------
--
-- Table structure for table `track_rating`
--
CREATE TABLE IF NOT EXISTS `track_rating` (
`rating_id` int(11) NOT NULL AUTO_INCREMENT,
`track_id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`rating` int(11) NOT NULL,
PRIMARY KEY (`rating_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE IF NOT EXISTS `users` (
`user_id` int(11) NOT NULL AUTO_INCREMENT,
`avatar` varchar(255) DEFAULT NULL,
`email` varchar(255) NOT NULL,
`password` varchar(255) NOT NULL,
`type` enum('ADMIN','TEACHER','USER') NOT NULL DEFAULT 'USER',
`active` enum('Yes','No') NOT NULL DEFAULT 'No',
`last_login` timestamp NULL DEFAULT NULL,
`hash` varchar(255) NOT NULL,
`register_date` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`username` varchar(255) NOT NULL,
`logged_in` int(1) NOT NULL DEFAULT '0' COMMENT '0 - No, 1 - Yes',
`first_name` varchar(33) NOT NULL,
`last_name` varchar(33) NOT NULL,
`city` varchar(33) DEFAULT NULL,
`country` varchar(33) DEFAULT NULL,
`intro` text,
`fb_url` varchar(255) DEFAULT NULL,
`twitter_url` varchar(255) DEFAULT NULL,
`linkedin_url` varchar(255) DEFAULT NULL,
`gplus_url` varchar(255) DEFAULT NULL,
PRIMARY KEY (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=83 ;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`user_id`, `avatar`, `email`, `password`, `type`, `active`, `last_login`, `hash`, `register_date`, `username`, `logged_in`, `first_name`, `last_name`, `city`, `country`, `intro`, `fb_url`, `twitter_url`, `linkedin_url`, `gplus_url`) VALUES
(1, '', '[email protected]', 'admin', 'ADMIN', 'Yes', '2014-09-16 15:12:37', '', '2014-09-22 16:18:45', 'admin', 0, 'Admin', 'Kapoor', '', '', '', '', '', '', ''),
(3, '', '[email protected]', 'teacher', 'TEACHER', 'No', NULL, '53a7aa0fc86f7a9b176180ce8aed59f2ce736b5696c106ae2b460539bbb4dec0', '2014-09-22 16:18:45', 'teacher', 0, 'Test', 'Teacher', '', '', '', '', '', '', ''),
(4, '', '[email protected]', 'student', 'USER', 'Yes', '2014-09-17 19:54:16', '5e4427cdc2aad36871a458858172692d8b903743c511c0c71fbb2bd31ade5267', '2014-09-22 16:18:45', 'student', 1, 'Test', 'Student', '', '', '', '', '', '', ''),
(6, 'files/profile-pic.jpg', '[email protected]', 'ishaq.zafar', 'ADMIN', 'Yes', '2014-09-18 09:43:30', '8ad8c472ba7bdced3d871d3f4b09d97824c6e4f6c9233952c6f9d3ad873a224e', '2014-09-22 16:18:45', 'ishaq.zafar', 1, 'Ishaq', 'Zafar', 'Pakpattan', 'Pakistan', 'Just another procrastinator.', 'facebook.com/bukhari.jar', 'twitter.com/bukhari_007', 'linkedin.com/profile/view?id=53290919', 'google.com/+IshaqBukhari'),
(7, '', '[email protected]', 'shahid.afridi', 'USER', 'Yes', '2014-09-21 08:20:40', '6e1bfbe1a96758036789bbac39bf9a5aa0d431d07b878aef735844c83d834929', '2014-09-22 16:18:45', 'shahid.afridi', 1, 'Shahid', 'Afridi', '', '', '', '', '', '', ''),
(11, 'files/profile-pic.jpg', '[email protected]', 'arm321', 'USER', 'Yes', NULL, '685ad82db88a9561b3d373a792a6aa6a2a7c0bc4094ff032f509244c5dd523ec2e2fbe596ce178594ac0363c42a8a4cd88b6c9ac337107a9e07b3e316b8e91e0', '2014-09-22 16:18:45', 'abdul-rehman', 0, 'Abdul', 'Rehman', 'Rawalpindi', 'Pakistan', 'I am a Software Engineering graduate student with love for Web Development. I love to play cricket and I am a fitness freak.', '', '', '', ''),
(13, '', '[email protected]', 'waleed.satti', 'USER', 'No', NULL, '2d108fc9b8592da3f9581377f25ddc04e1934345aedc5dfc039ea33d57b455ff567207d1bf1d733f2354039cbbfb048b1ac2b3cfc68389e59a6b67cda72d5b22', '2014-09-22 16:41:38', 'waleed.satti', 0, 'Waleed', 'Satti', '', '', '', '', '', '', ''),
(17, '', '[email protected]', 'zeeshan', 'USER', 'No', NULL, '', '2014-10-26 05:45:00', 'Zeeshan Iqbal', 0, 'Zeeshan', 'Bin Iqbal', '', '', '', '', '', '', ''),
(18, '', '[email protected]', 'zia123', 'USER', 'No', NULL, '', '2014-10-26 05:45:32', 'Zia Ur Rehman', 0, 'Zia', 'Ur Rehman', '', '', '', '', '', '', ''),
(19, '', '[email protected]', 'moez123', 'USER', 'No', NULL, '', '2014-10-26 05:46:27', 'Moez Isar', 0, 'Moez', 'Isar', '', '', '', '', '', '', ''),
(20, '', '[email protected]', 'biker_boy91', 'USER', 'No', NULL, '', '2014-10-26 05:47:14', 'Nasrullah Inayat', 0, 'Nasrullah', 'Inayat', '', '', '', '', '', '', ''),
(21, '', '[email protected]', 'umer123', 'USER', 'No', NULL, '', '2014-10-26 05:47:50', 'Muhammad Umer', 0, 'Muhammad', 'Umer', '', '', '', '', '', '', ''),
(22, '', '[email protected]', '[email protected]', 'USER', 'No', NULL, '', '2014-10-26 05:48:28', 'Abdullah Abbasi', 0, 'Abdullah', 'Abbasi', '', '', '', '', '', '', ''),
(23, '', '[email protected]', 'Ahsan', 'USER', 'No', NULL, '', '2014-10-26 05:48:45', 'Ahsan Naseem', 0, 'Ahsan', 'Naseem', '', '', '', '', '', '', ''),
(24, '', '[email protected]', 'sabahat', 'USER', 'No', NULL, '', '2014-10-26 05:50:36', 'Sabahat Afzal', 0, 'Sabahat', 'Afzal', '', '', '', '', '', '', ''),
(25, '', '[email protected]', 'bilu-bhai', 'USER', 'No', NULL, '', '2014-10-26 05:51:13', 'Bilal Sipra', 0, 'Bilal', 'Sipra', '', '', '', '', '', '', ''),
(26, '', '[email protected]', 'behzad', 'USER', 'No', NULL, '', '2014-10-26 05:51:50', 'Behzad Rajgan', 0, 'Behzad', 'Rajgan', '', '', '', '', '', '', ''),
(27, '', '[email protected]', 'wwe123', 'USER', 'No', NULL, '', '2014-10-26 05:52:15', 'Waqas Khalli', 0, 'Waqas', 'Khalli', '', '', '', '', '', '', ''),
(28, '', '[email protected]', 'zohaib', 'USER', 'No', NULL, '', '2014-10-26 05:52:37', 'Zohaib Abbas', 0, 'Zohaib', 'Abbas', '', '', '', '', '', '', ''),
(29, '', '[email protected]', 'ali.riphah', 'USER', 'No', NULL, '', '2014-10-26 05:53:05', 'Ali Ahmad', 0, 'Ali', 'Ahmad', '', '', '', '', '', '', ''),
(30, '', '[email protected]', 'Saqi1', 'USER', 'No', NULL, '', '2014-10-26 05:53:23', 'Saqlain Mushtaq', 0, 'Saqlain', 'Mushtaq', '', '', '', '', '', '', ''),
(31, '', '[email protected]', 'altaf', 'USER', 'No', NULL, '', '2014-10-26 05:54:22', 'Kashir Altaf', 0, 'Kashir', 'Altaf', '', '', '', '', '', '', ''),
(32, '', '[email protected]', 'khanjee', 'USER', 'No', NULL, '', '2014-10-26 05:54:45', 'Bilal Khan', 0, 'Bilal', 'Khan', '', '', '', '', '', '', ''),
(33, '', '[email protected]', 'wasii', 'USER', 'No', NULL, '', '2014-10-26 05:55:04', 'Wasif Wasif', 0, 'Wasif', 'Wasif', '', '', '', '', '', '', ''),
(34, '', '[email protected]', 'max555', 'USER', 'No', NULL, '', '2014-10-26 05:55:27', 'Shaun Max', 0, 'Shaun', 'Max', '', '', '', '', '', '', ''),
(35, '', '[email protected]', 'american', 'USER', 'No', NULL, '', '2014-10-26 05:55:55', 'Paul Alen', 0, 'Paul', 'Alen', '', '', '', '', '', '', ''),
(36, '', '[email protected]', 'Batman', 'USER', 'No', NULL, '', '2014-10-26 05:56:14', 'Christian Bale', 0, 'Christian', 'Bale', '', '', '', '', '', '', ''),
(37, '', '[email protected]', 'american.history', 'USER', 'No', NULL, '', '2014-10-26 05:56:44', 'Edward Norton', 0, 'Edward', 'Norton', '', '', '', '', '', '', ''),
(38, '', '[email protected]', 'father', 'USER', 'No', NULL, '', '2014-10-26 05:57:38', 'alan-turing', 0, 'Alan', 'Turing', '', '', '', '', '', '', ''),
(39, '', '[email protected]', 'yahoo.', 'USER', 'No', NULL, '', '2014-10-26 05:58:10', 'maryam.ilyas', 0, 'Maryam', 'Ilyas', '', '', '', '', '', '', ''),
(40, '', '[email protected]', 'oldblackguy', 'USER', 'No', NULL, '', '2014-10-26 05:59:33', 'morgan-freeman', 0, 'Morgan', 'Freeman', '', '', '', '', '', '', ''),
(41, '', '[email protected]', 'ali333', 'USER', 'No', NULL, '', '2014-10-26 06:00:37', 'ali-akbar', 0, 'Ali', 'Akbar', '', '', '', '', '', '', ''),
(42, '', '[email protected]', 'freekashmir', 'USER', 'No', NULL, '', '2014-10-26 06:01:13', 'ali-shughal', 0, 'Ali', 'Shughal', '', '', '', '', '', '', ''),
(43, '', '[email protected]', 'roberto', 'USER', 'No', NULL, '', '2014-10-26 06:01:59', 'robert-downey', 0, 'Robert', 'Downey Jr.', '', '', '', '', '', '', ''),
(44, '', '[email protected]', 'saud.khan', 'USER', 'No', NULL, '', '2014-10-28 10:15:09', 'saud-khan', 0, 'Saud', 'Khan', '', '', '', '', '', '', ''),
(55, '', '[email protected]', '[email protected]', 'USER', 'No', NULL, '', '2014-11-05 17:18:53', 'admins', 0, 'Admin', 'Saab', '', '', '', '', '', '', ''),
(59, '', '[email protected]', '''success'' => $success', 'USER', 'No', NULL, '', '2014-11-07 14:41:38', 'jimmy-anderson', 0, 'Jimmy', 'Anderson', '', '', '', '', '', '', ''),
(60, '', '[email protected]', 'army123', 'USER', 'No', NULL, '', '2014-11-07 14:43:33', 'gen-mushi', 0, 'General', 'Musharraf', '', '', '', '', '', '', ''),
(61, '', '[email protected]', '[email protected]', 'USER', 'No', NULL, '', '2014-11-07 14:45:40', 'mir-shakil', 0, 'Mir', 'Shakil', '', '', '', '', '', '', ''),
(62, '', '[email protected]', 'abdul@sdfj', 'USER', 'No', NULL, '', '2014-11-08 10:44:46', 'abdul-qadir', 0, 'Qadir', 'Baloch', '', '', '', '', '', '', ''),
(63, '', '[email protected]', 'abdul@sdfj', 'USER', 'No', NULL, '', '2014-11-08 10:44:58', 'abdul-qadir', 0, 'Abdul', 'Qadir', '', '', '', '', '', '', ''),
(64, '', '[email protected]', '[email protected]', 'USER', 'No', NULL, '', '2014-11-10 09:14:26', 'shahid-afridi', 0, 'Shahid', 'Afridi', '', '', '', '', '', '', ''),
(65, '', '[email protected]', '[email protected]', 'USER', 'No', NULL, '', '2014-11-10 09:16:55', 'inzi-bhai', 0, 'Inzi', 'Bhai', '', '', '', '', '', '', ''),
(66, '', '[email protected]', '[email protected]', 'USER', 'No', NULL, '', '2014-11-13 06:24:22', 'waleed-ahmad', 0, 'Waleed', 'Ahmad', '', '', '', '', '', '', ''),
(67, '', '[email protected]', '[email protected]', 'USER', 'No', NULL, '', '2014-11-14 07:23:44', 'ahmad-mukhtar', 0, 'Ahmad', 'Mukhtar', '', '', '', '', '', '', ''),
(68, '', '[email protected]', '[email protected]', 'USER', 'No', NULL, '', '2014-11-14 10:37:48', 'shaun-tait', 0, 'Shaun', 'Tait', '', '', '', '', '', '', ''),
(69, '', '[email protected]', '[email protected]', 'USER', 'No', NULL, '', '2014-11-20 00:46:42', 'tom-cat', 0, 'Tom', 'Cat', '', '', '', '', '', '', ''),
(70, '', '[email protected]', 'batman', 'USER', 'No', NULL, '', '2014-11-20 00:52:33', 'bat.man', 0, 'Bat', 'Man', '', '', '', '', '', '', ''),
(71, '', '[email protected]', 'haqhoo', 'USER', 'Yes', NULL, '', '2014-11-20 01:21:12', 'allah-rakha', 0, 'Allah', 'Rakha', '', '', '', '', '', '', ''),
(72, '', '[email protected]', 'moon123', 'USER', 'Yes', NULL, '', '2014-11-20 01:26:35', 'moon-bhai', 0, 'Moon', 'Bhai', '', '', '', '', '', '', ''),
(73, '', '[email protected]', 'noornoor', 'USER', 'Yes', NULL, '', '2014-11-20 01:45:50', 'noor-shah', 0, 'Noor', 'Shah', '', '', '', '', '', '', ''),
(74, '', '[email protected]', 'khosa123', 'USER', 'Yes', NULL, '', '2014-11-20 16:59:04', 'nazir-khosa', 0, 'Nazir', 'Khosa', '', '', '', '', '', '', ''),
(75, '', '[email protected]', 'ditta1', 'USER', 'Yes', NULL, '', '2014-11-20 18:00:09', 'allah-ditta', 0, 'Allah', 'Ditta', '', '', '', '', '', '', ''),
(76, '', '[email protected]', 'waleed123', 'USER', 'Yes', NULL, '', '2014-11-21 09:50:43', 'waleed-inaam', 0, 'Waleed', 'Inaam', '', '', '', '', '', '', ''),
(77, '', '[email protected]', 'waleed123', 'USER', 'Yes', NULL, '', '2014-11-21 09:56:44', 'waleed-satti', 0, 'Waleed', 'Satti', '', '', '', '', '', '', ''),
(78, '', '[email protected]', 'shahjee', 'USER', 'Yes', NULL, '', '2014-11-22 00:27:53', 'shah-jee', 0, 'shah', 'jee', '', '', '', '', '', '', ''),
(79, '', '[email protected]', 'azeem', 'USER', 'Yes', NULL, '', '2014-11-22 00:29:21', 'mian-azeem', 0, 'mian', 'azeem', '', '', '', '', '', '', ''),
(80, '', '[email protected]', 'wattu', 'USER', 'Yes', NULL, '', '2014-11-22 08:13:42', 'wattu-sb', 0, 'Wattu', 'Sb', '', '', '', '', '', '', ''),
(81, '', '[email protected]', '[email protected]', 'USER', 'Yes', NULL, '', '2014-11-22 13:42:30', 'nazir-ahmad', 0, 'Nazir', 'Ahmad', '', '', '', '', '', '', ''),
(82, NULL, '[email protected]', '[email protected]', 'USER', 'Yes', NULL, '5d6c48cd6d651753324ff8441b4718344ffd7f7559e2a92d330b99b88926dff2f03f9d4c04fd3565db4139309ee885e7a0c9b1ace912a320024e701f54a23108', '2014-11-22 15:50:39', 'naeem-khan', 0, 'Naeem', 'Khan', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `user_interest_categories`
--
CREATE TABLE IF NOT EXISTS `user_interest_categories` (
`id` int(19) NOT NULL AUTO_INCREMENT,
`user_id` int(10) NOT NULL,
`cat_id` int(10) NOT NULL,
`interest_level` int(2) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=248 ;
--
-- Dumping data for table `user_interest_categories`
--
INSERT INTO `user_interest_categories` (`id`, `user_id`, `cat_id`, `interest_level`) VALUES
(80, 1, 1, 2),
(81, 1, 2, 2),
(82, 1, 3, 2),
(83, 1, 4, 2),
(84, 1, 5, 2),
(85, 1, 6, 0),
(86, 1, 7, 0),
(87, 1, 8, 0),
(88, 1, 9, 0),
(89, 1, 10, 0),
(90, 1, 11, 0),
(91, 1, 12, 0),
(92, 1, 13, 0),
(93, 1, 14, 0),
(94, 64, 1, 0),
(95, 64, 2, 2),
(96, 64, 3, 0),
(97, 64, 4, 0),