Changes between Version 13 and Version 14 of Reshavanje
- Timestamp:
- 12/21/22 16:27:50 (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Reshavanje
v13 v14 17 17 [[Image(Subjects1.png)]] 18 18 19 {{{ 20 select * from subject 21 }}} 22 19 23 == Чекор 3 20 24 21 25 Корисникот избира една од понудените теми. 26 27 28 {{{ 29 select * from subject 30 where inputSubjectName=subjectname 31 }}} 32 22 33 23 34 == Чекор 4 … … 27 38 [[Image(Categories.png)]] 28 39 40 {{{ 41 select * from category 42 where selectedSubjectID=subjectid 43 }}} 44 29 45 == Чекор 5 30 46 31 47 Корисникот бира една од категориите. 48 49 {{{ 50 select * from category 51 where inputCategoryName=categoryname 52 }}} 32 53 33 54 == Чекор 6 … … 36 57 37 58 [[Image(Quizzes1.png)]] 59 60 {{{ 61 select * from quiz 62 where selectedCategoryID=categoryid 63 }}}