12345678910111213141516171819202122 |
- <?php
- $courses = array();
- $courses[] = array(
- 'code' => 'ENGLISH101',
- 'title' => 'English for beginners',
- 'description' => 'English course',
- 'category_code' => 'PROJ',
- 'course_language' => 'english',
- 'user_id' => 1,
- 'expiration_date' => '2020-09-01 00:00:00',
- 'exemplary_content' => true,
- );
|