├── .gitignore ├── 10th_June ├── Css │ ├── index.css │ ├── index.html │ └── internalStyleSheet.html ├── HTML │ ├── Form.html │ ├── StudentTable.html │ ├── index.html │ └── positionFixed.html ├── PHP │ ├── Basic.php │ ├── BasicWithHtml.php │ ├── Cookies │ │ ├── cookies.php │ │ └── displayCookie.php │ ├── InvsRE.php │ ├── config │ │ └── DBConnection.php │ ├── services │ │ └── StudentService.php │ ├── session │ │ ├── CreateSession.php │ │ ├── SessionMain.php │ │ └── displaySessions.php │ └── slectionPHP.php ├── PastPaper │ ├── CreateReport.php │ ├── Paper2019.docx │ ├── WhatsApp Image 2021-06-13 at 5.38.01 PM.jpeg │ ├── WhatsApp Image 2021-06-13 at 5.38.20 PM.jpeg │ ├── WhatsApp Image 2021-06-13 at 5.38.42 PM.jpeg │ └── bookshop.sql ├── XML │ └── StudentList.xml ├── crud │ ├── Basic.php │ └── StudentService.php └── js │ ├── eventHandling.html │ ├── eventHandling.js │ ├── function.js │ ├── functionLession.html │ ├── jsBasic.html │ └── jsBasic.js ├── 22nd_November ├── js │ ├── index.html │ └── index.js ├── pastpaper │ └── 2022 │ │ ├── Question02 │ │ ├── Qa │ │ │ └── index.php │ │ ├── Qb │ │ │ └── index.html │ │ └── Qc │ │ │ └── index.html │ │ └── Question03 │ │ ├── Qa │ │ ├── addBcok.php │ │ ├── config.php │ │ └── display_books.php │ │ └── cookies │ │ └── Qc.php └── php │ └── crud │ ├── addCustomer.php │ └── config.php ├── 29th_Oct ├── CSS │ ├── cssExample.html │ └── external.css ├── HTML │ ├── basic.html │ ├── display.html │ ├── page-structure.html │ └── register.html ├── JavaScript │ ├── example.html │ └── js │ │ └── example.js ├── PHP │ ├── COOKIES │ │ └── cookies.php │ ├── SESSION │ │ ├── session-one.php │ │ ├── session-two.php │ │ └── session.php │ └── basic │ │ └── basic.php ├── Past-Papers │ ├── Past-Papers.iml │ ├── Q04 │ │ ├── IMG-20201207-WA0038.jpg │ │ ├── index.html │ │ └── index.xml │ ├── Q06 │ │ ├── IMG-20201207-WA0241.jpeg │ │ ├── index.html │ │ └── index.xml │ ├── Q11 │ │ ├── IMG-20201207-WA0088.jpg │ │ ├── IMG-20201207-WA0089.jpg │ │ └── part_A.html │ └── Q12 │ │ ├── IMG-20201207-WA0448.jpg │ │ ├── IMG-20201207-WA0449.jpg │ │ ├── IMG-20201207-WA0450.jpg │ │ └── createReport.php └── img │ └── WhatsApp Image 2021-10-20 at 5.39.40 PM.jpeg ├── 3rd_June ├── .gitignore ├── Css │ ├── Css.iml │ ├── Selectors.html │ ├── css_basic.index.html │ ├── css_basic_index.css │ └── selectors.css ├── HTML │ ├── HTML.iml │ ├── content-sectioning.html │ ├── css │ │ ├── flex.css │ │ └── sectioning.css │ ├── flex.html │ ├── index.html │ ├── kuppi.html │ └── register.html ├── JavaScript │ ├── JavaScript.iml │ ├── Nested_if-else.js │ ├── Simple_if_else_.js │ ├── Switch.js │ ├── animation.js │ ├── function.js │ ├── javascript.html │ └── session.html ├── PHP │ ├── PHP.iml │ ├── basic.php │ ├── config │ │ └── config.php │ ├── cookies │ │ ├── cookies.php │ │ └── homePage.php │ ├── form │ │ ├── form.php │ │ └── services │ │ │ └── formService.php │ ├── php_Code_and_Session │ │ ├── externalForm.php │ │ ├── inline.php │ │ ├── internal.php │ │ └── service │ │ │ └── external.php │ └── test.php ├── Past-Papers │ ├── Q │ │ ├── WhatsApp Image 2021-06-12 at 2.51.28 PM (1).jpeg │ │ ├── index.html │ │ └── index.xml │ ├── Q11 │ │ ├── WhatsApp Image 2021-06-12 at 8.11.46 PM (1).jpeg │ │ ├── WhatsApp Image 2021-06-12 at 8.11.46 PM.jpeg │ │ └── part_A.html │ ├── Q12 │ │ ├── WhatsApp Image 2021-06-12 at 2.51.22 PM.jpeg │ │ ├── WhatsApp Image 2021-06-12 at 2.51.23 PM.jpeg │ │ ├── WhatsApp Image 2021-06-12 at 2.51.24 PM.jpeg │ │ ├── createReport.php │ │ └── employee.sql │ ├── Q13 │ │ ├── WhatsApp Image 2021-06-13 at 5.38.01 PM.jpeg │ │ ├── WhatsApp Image 2021-06-13 at 5.38.20 PM.jpeg │ │ ├── WhatsApp Image 2021-06-13 at 5.38.42 PM.jpeg │ │ ├── bookshop.sql │ │ └── createReport.php │ └── Q2 │ │ ├── MicrosoftTeams-image (2).png │ │ ├── index.html │ │ └── index.xml ├── XML │ └── index.xml └── img │ └── session_image.jpg ├── README.md └── presentation └── HTML-CSS-JS-PHP-Madhusha.pptx /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/.gitignore -------------------------------------------------------------------------------- /10th_June/Css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/10th_June/Css/index.css -------------------------------------------------------------------------------- /10th_June/Css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/10th_June/Css/index.html -------------------------------------------------------------------------------- /10th_June/Css/internalStyleSheet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/10th_June/Css/internalStyleSheet.html -------------------------------------------------------------------------------- /10th_June/HTML/Form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/10th_June/HTML/Form.html -------------------------------------------------------------------------------- /10th_June/HTML/StudentTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/10th_June/HTML/StudentTable.html -------------------------------------------------------------------------------- /10th_June/HTML/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/10th_June/HTML/index.html -------------------------------------------------------------------------------- /10th_June/HTML/positionFixed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/10th_June/HTML/positionFixed.html -------------------------------------------------------------------------------- /10th_June/PHP/Basic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/10th_June/PHP/Basic.php -------------------------------------------------------------------------------- /10th_June/PHP/BasicWithHtml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/10th_June/PHP/BasicWithHtml.php -------------------------------------------------------------------------------- /10th_June/PHP/Cookies/cookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/10th_June/PHP/Cookies/cookies.php -------------------------------------------------------------------------------- /10th_June/PHP/Cookies/displayCookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/10th_June/PHP/Cookies/displayCookie.php -------------------------------------------------------------------------------- /10th_June/PHP/InvsRE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/10th_June/PHP/InvsRE.php -------------------------------------------------------------------------------- /10th_June/PHP/config/DBConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/10th_June/PHP/config/DBConnection.php -------------------------------------------------------------------------------- /10th_June/PHP/services/StudentService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/10th_June/PHP/services/StudentService.php -------------------------------------------------------------------------------- /10th_June/PHP/session/CreateSession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/10th_June/PHP/session/CreateSession.php -------------------------------------------------------------------------------- /10th_June/PHP/session/SessionMain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/10th_June/PHP/session/SessionMain.php -------------------------------------------------------------------------------- /10th_June/PHP/session/displaySessions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/10th_June/PHP/session/displaySessions.php -------------------------------------------------------------------------------- /10th_June/PHP/slectionPHP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/10th_June/PHP/slectionPHP.php -------------------------------------------------------------------------------- /10th_June/PastPaper/CreateReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/10th_June/PastPaper/CreateReport.php -------------------------------------------------------------------------------- /10th_June/PastPaper/Paper2019.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/10th_June/PastPaper/Paper2019.docx -------------------------------------------------------------------------------- /10th_June/PastPaper/WhatsApp Image 2021-06-13 at 5.38.01 PM.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/10th_June/PastPaper/WhatsApp Image 2021-06-13 at 5.38.01 PM.jpeg -------------------------------------------------------------------------------- /10th_June/PastPaper/WhatsApp Image 2021-06-13 at 5.38.20 PM.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/10th_June/PastPaper/WhatsApp Image 2021-06-13 at 5.38.20 PM.jpeg -------------------------------------------------------------------------------- /10th_June/PastPaper/WhatsApp Image 2021-06-13 at 5.38.42 PM.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/10th_June/PastPaper/WhatsApp Image 2021-06-13 at 5.38.42 PM.jpeg -------------------------------------------------------------------------------- /10th_June/PastPaper/bookshop.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/10th_June/PastPaper/bookshop.sql -------------------------------------------------------------------------------- /10th_June/XML/StudentList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/10th_June/XML/StudentList.xml -------------------------------------------------------------------------------- /10th_June/crud/Basic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/10th_June/crud/Basic.php -------------------------------------------------------------------------------- /10th_June/crud/StudentService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/10th_June/crud/StudentService.php -------------------------------------------------------------------------------- /10th_June/js/eventHandling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/10th_June/js/eventHandling.html -------------------------------------------------------------------------------- /10th_June/js/eventHandling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/10th_June/js/eventHandling.js -------------------------------------------------------------------------------- /10th_June/js/function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/10th_June/js/function.js -------------------------------------------------------------------------------- /10th_June/js/functionLession.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/10th_June/js/functionLession.html -------------------------------------------------------------------------------- /10th_June/js/jsBasic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/10th_June/js/jsBasic.html -------------------------------------------------------------------------------- /10th_June/js/jsBasic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/10th_June/js/jsBasic.js -------------------------------------------------------------------------------- /22nd_November/js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/22nd_November/js/index.html -------------------------------------------------------------------------------- /22nd_November/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/22nd_November/js/index.js -------------------------------------------------------------------------------- /22nd_November/pastpaper/2022/Question02/Qa/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/22nd_November/pastpaper/2022/Question02/Qa/index.php -------------------------------------------------------------------------------- /22nd_November/pastpaper/2022/Question02/Qb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/22nd_November/pastpaper/2022/Question02/Qb/index.html -------------------------------------------------------------------------------- /22nd_November/pastpaper/2022/Question02/Qc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/22nd_November/pastpaper/2022/Question02/Qc/index.html -------------------------------------------------------------------------------- /22nd_November/pastpaper/2022/Question03/Qa/addBcok.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/22nd_November/pastpaper/2022/Question03/Qa/addBcok.php -------------------------------------------------------------------------------- /22nd_November/pastpaper/2022/Question03/Qa/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/22nd_November/pastpaper/2022/Question03/Qa/config.php -------------------------------------------------------------------------------- /22nd_November/pastpaper/2022/Question03/Qa/display_books.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/22nd_November/pastpaper/2022/Question03/Qa/display_books.php -------------------------------------------------------------------------------- /22nd_November/pastpaper/2022/Question03/cookies/Qc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/22nd_November/pastpaper/2022/Question03/cookies/Qc.php -------------------------------------------------------------------------------- /22nd_November/php/crud/addCustomer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/22nd_November/php/crud/addCustomer.php -------------------------------------------------------------------------------- /22nd_November/php/crud/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/22nd_November/php/crud/config.php -------------------------------------------------------------------------------- /29th_Oct/CSS/cssExample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/29th_Oct/CSS/cssExample.html -------------------------------------------------------------------------------- /29th_Oct/CSS/external.css: -------------------------------------------------------------------------------- 1 | .para{ 2 | 3 | } -------------------------------------------------------------------------------- /29th_Oct/HTML/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/29th_Oct/HTML/basic.html -------------------------------------------------------------------------------- /29th_Oct/HTML/display.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/29th_Oct/HTML/display.html -------------------------------------------------------------------------------- /29th_Oct/HTML/page-structure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/29th_Oct/HTML/page-structure.html -------------------------------------------------------------------------------- /29th_Oct/HTML/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/29th_Oct/HTML/register.html -------------------------------------------------------------------------------- /29th_Oct/JavaScript/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/29th_Oct/JavaScript/example.html -------------------------------------------------------------------------------- /29th_Oct/JavaScript/js/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/29th_Oct/JavaScript/js/example.js -------------------------------------------------------------------------------- /29th_Oct/PHP/COOKIES/cookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/29th_Oct/PHP/COOKIES/cookies.php -------------------------------------------------------------------------------- /29th_Oct/PHP/SESSION/session-one.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/29th_Oct/PHP/SESSION/session-one.php -------------------------------------------------------------------------------- /29th_Oct/PHP/SESSION/session-two.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/29th_Oct/PHP/SESSION/session-two.php -------------------------------------------------------------------------------- /29th_Oct/PHP/SESSION/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/29th_Oct/PHP/SESSION/session.php -------------------------------------------------------------------------------- /29th_Oct/PHP/basic/basic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/29th_Oct/PHP/basic/basic.php -------------------------------------------------------------------------------- /29th_Oct/Past-Papers/Past-Papers.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/29th_Oct/Past-Papers/Past-Papers.iml -------------------------------------------------------------------------------- /29th_Oct/Past-Papers/Q04/IMG-20201207-WA0038.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/29th_Oct/Past-Papers/Q04/IMG-20201207-WA0038.jpg -------------------------------------------------------------------------------- /29th_Oct/Past-Papers/Q04/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/29th_Oct/Past-Papers/Q04/index.html -------------------------------------------------------------------------------- /29th_Oct/Past-Papers/Q04/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/29th_Oct/Past-Papers/Q04/index.xml -------------------------------------------------------------------------------- /29th_Oct/Past-Papers/Q06/IMG-20201207-WA0241.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/29th_Oct/Past-Papers/Q06/IMG-20201207-WA0241.jpeg -------------------------------------------------------------------------------- /29th_Oct/Past-Papers/Q06/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/29th_Oct/Past-Papers/Q06/index.html -------------------------------------------------------------------------------- /29th_Oct/Past-Papers/Q06/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/29th_Oct/Past-Papers/Q06/index.xml -------------------------------------------------------------------------------- /29th_Oct/Past-Papers/Q11/IMG-20201207-WA0088.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/29th_Oct/Past-Papers/Q11/IMG-20201207-WA0088.jpg -------------------------------------------------------------------------------- /29th_Oct/Past-Papers/Q11/IMG-20201207-WA0089.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/29th_Oct/Past-Papers/Q11/IMG-20201207-WA0089.jpg -------------------------------------------------------------------------------- /29th_Oct/Past-Papers/Q11/part_A.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/29th_Oct/Past-Papers/Q11/part_A.html -------------------------------------------------------------------------------- /29th_Oct/Past-Papers/Q12/IMG-20201207-WA0448.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/29th_Oct/Past-Papers/Q12/IMG-20201207-WA0448.jpg -------------------------------------------------------------------------------- /29th_Oct/Past-Papers/Q12/IMG-20201207-WA0449.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/29th_Oct/Past-Papers/Q12/IMG-20201207-WA0449.jpg -------------------------------------------------------------------------------- /29th_Oct/Past-Papers/Q12/IMG-20201207-WA0450.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/29th_Oct/Past-Papers/Q12/IMG-20201207-WA0450.jpg -------------------------------------------------------------------------------- /29th_Oct/Past-Papers/Q12/createReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/29th_Oct/Past-Papers/Q12/createReport.php -------------------------------------------------------------------------------- /29th_Oct/img/WhatsApp Image 2021-10-20 at 5.39.40 PM.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/29th_Oct/img/WhatsApp Image 2021-10-20 at 5.39.40 PM.jpeg -------------------------------------------------------------------------------- /3rd_June/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/.gitignore -------------------------------------------------------------------------------- /3rd_June/Css/Css.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/Css/Css.iml -------------------------------------------------------------------------------- /3rd_June/Css/Selectors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/Css/Selectors.html -------------------------------------------------------------------------------- /3rd_June/Css/css_basic.index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/Css/css_basic.index.html -------------------------------------------------------------------------------- /3rd_June/Css/css_basic_index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/Css/css_basic_index.css -------------------------------------------------------------------------------- /3rd_June/Css/selectors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/Css/selectors.css -------------------------------------------------------------------------------- /3rd_June/HTML/HTML.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/HTML/HTML.iml -------------------------------------------------------------------------------- /3rd_June/HTML/content-sectioning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/HTML/content-sectioning.html -------------------------------------------------------------------------------- /3rd_June/HTML/css/flex.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/HTML/css/flex.css -------------------------------------------------------------------------------- /3rd_June/HTML/css/sectioning.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/HTML/css/sectioning.css -------------------------------------------------------------------------------- /3rd_June/HTML/flex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/HTML/flex.html -------------------------------------------------------------------------------- /3rd_June/HTML/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/HTML/index.html -------------------------------------------------------------------------------- /3rd_June/HTML/kuppi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/HTML/kuppi.html -------------------------------------------------------------------------------- /3rd_June/HTML/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/HTML/register.html -------------------------------------------------------------------------------- /3rd_June/JavaScript/JavaScript.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/JavaScript/JavaScript.iml -------------------------------------------------------------------------------- /3rd_June/JavaScript/Nested_if-else.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/JavaScript/Nested_if-else.js -------------------------------------------------------------------------------- /3rd_June/JavaScript/Simple_if_else_.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/JavaScript/Simple_if_else_.js -------------------------------------------------------------------------------- /3rd_June/JavaScript/Switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/JavaScript/Switch.js -------------------------------------------------------------------------------- /3rd_June/JavaScript/animation.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rd_June/JavaScript/function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/JavaScript/function.js -------------------------------------------------------------------------------- /3rd_June/JavaScript/javascript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/JavaScript/javascript.html -------------------------------------------------------------------------------- /3rd_June/JavaScript/session.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/JavaScript/session.html -------------------------------------------------------------------------------- /3rd_June/PHP/PHP.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/PHP/PHP.iml -------------------------------------------------------------------------------- /3rd_June/PHP/basic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/PHP/basic.php -------------------------------------------------------------------------------- /3rd_June/PHP/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/PHP/config/config.php -------------------------------------------------------------------------------- /3rd_June/PHP/cookies/cookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/PHP/cookies/cookies.php -------------------------------------------------------------------------------- /3rd_June/PHP/cookies/homePage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/PHP/cookies/homePage.php -------------------------------------------------------------------------------- /3rd_June/PHP/form/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/PHP/form/form.php -------------------------------------------------------------------------------- /3rd_June/PHP/form/services/formService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/PHP/form/services/formService.php -------------------------------------------------------------------------------- /3rd_June/PHP/php_Code_and_Session/externalForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/PHP/php_Code_and_Session/externalForm.php -------------------------------------------------------------------------------- /3rd_June/PHP/php_Code_and_Session/inline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/PHP/php_Code_and_Session/inline.php -------------------------------------------------------------------------------- /3rd_June/PHP/php_Code_and_Session/internal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/PHP/php_Code_and_Session/internal.php -------------------------------------------------------------------------------- /3rd_June/PHP/php_Code_and_Session/service/external.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/PHP/php_Code_and_Session/service/external.php -------------------------------------------------------------------------------- /3rd_June/PHP/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/PHP/test.php -------------------------------------------------------------------------------- /3rd_June/Past-Papers/Q/WhatsApp Image 2021-06-12 at 2.51.28 PM (1).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/Past-Papers/Q/WhatsApp Image 2021-06-12 at 2.51.28 PM (1).jpeg -------------------------------------------------------------------------------- /3rd_June/Past-Papers/Q/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/Past-Papers/Q/index.html -------------------------------------------------------------------------------- /3rd_June/Past-Papers/Q/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/Past-Papers/Q/index.xml -------------------------------------------------------------------------------- /3rd_June/Past-Papers/Q11/WhatsApp Image 2021-06-12 at 8.11.46 PM (1).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/Past-Papers/Q11/WhatsApp Image 2021-06-12 at 8.11.46 PM (1).jpeg -------------------------------------------------------------------------------- /3rd_June/Past-Papers/Q11/WhatsApp Image 2021-06-12 at 8.11.46 PM.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/Past-Papers/Q11/WhatsApp Image 2021-06-12 at 8.11.46 PM.jpeg -------------------------------------------------------------------------------- /3rd_June/Past-Papers/Q11/part_A.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/Past-Papers/Q11/part_A.html -------------------------------------------------------------------------------- /3rd_June/Past-Papers/Q12/WhatsApp Image 2021-06-12 at 2.51.22 PM.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/Past-Papers/Q12/WhatsApp Image 2021-06-12 at 2.51.22 PM.jpeg -------------------------------------------------------------------------------- /3rd_June/Past-Papers/Q12/WhatsApp Image 2021-06-12 at 2.51.23 PM.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/Past-Papers/Q12/WhatsApp Image 2021-06-12 at 2.51.23 PM.jpeg -------------------------------------------------------------------------------- /3rd_June/Past-Papers/Q12/WhatsApp Image 2021-06-12 at 2.51.24 PM.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/Past-Papers/Q12/WhatsApp Image 2021-06-12 at 2.51.24 PM.jpeg -------------------------------------------------------------------------------- /3rd_June/Past-Papers/Q12/createReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/Past-Papers/Q12/createReport.php -------------------------------------------------------------------------------- /3rd_June/Past-Papers/Q12/employee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/Past-Papers/Q12/employee.sql -------------------------------------------------------------------------------- /3rd_June/Past-Papers/Q13/WhatsApp Image 2021-06-13 at 5.38.01 PM.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/Past-Papers/Q13/WhatsApp Image 2021-06-13 at 5.38.01 PM.jpeg -------------------------------------------------------------------------------- /3rd_June/Past-Papers/Q13/WhatsApp Image 2021-06-13 at 5.38.20 PM.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/Past-Papers/Q13/WhatsApp Image 2021-06-13 at 5.38.20 PM.jpeg -------------------------------------------------------------------------------- /3rd_June/Past-Papers/Q13/WhatsApp Image 2021-06-13 at 5.38.42 PM.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/Past-Papers/Q13/WhatsApp Image 2021-06-13 at 5.38.42 PM.jpeg -------------------------------------------------------------------------------- /3rd_June/Past-Papers/Q13/bookshop.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/Past-Papers/Q13/bookshop.sql -------------------------------------------------------------------------------- /3rd_June/Past-Papers/Q13/createReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/Past-Papers/Q13/createReport.php -------------------------------------------------------------------------------- /3rd_June/Past-Papers/Q2/MicrosoftTeams-image (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/Past-Papers/Q2/MicrosoftTeams-image (2).png -------------------------------------------------------------------------------- /3rd_June/Past-Papers/Q2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/Past-Papers/Q2/index.html -------------------------------------------------------------------------------- /3rd_June/Past-Papers/Q2/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/Past-Papers/Q2/index.xml -------------------------------------------------------------------------------- /3rd_June/XML/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/XML/index.xml -------------------------------------------------------------------------------- /3rd_June/img/session_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/3rd_June/img/session_image.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/README.md -------------------------------------------------------------------------------- /presentation/HTML-CSS-JS-PHP-Madhusha.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadhushaPrasad/IWT-Module---Support_Session/HEAD/presentation/HTML-CSS-JS-PHP-Madhusha.pptx --------------------------------------------------------------------------------