We will continue to build our angular app, Today we will realize adding data from form to model. To make adding data to model from form with angular we need to do this steps: adding angula directive ng-click to element which data will send to controller while click...
Tutorials
Angular js. Modules, directives, controllers, expressions, MVC
In last lesson. Today we begin to build simple angular app, while discussing the basic concepts - directives, modules, expressions, controllers, and shortly consider approach to build apps - MVC (Model-View-Controller). Let's discuss key definitions of this lesson:...
Intro to angular js
In this lesson we will begin to learn angular javascript framework. In our time there are a lot of javascript frameworks. Now there are three major frameworks: angular js, react js and vue js Now angular is supported by Google. React js is facebook product. Now let's...
Cookie and SQL injections
In this lesson we'll consider COOKIE, which is similar with SESSIONS. Also we'll discuss problem with safety - SQL injections. COOKIE is similar with SESSIONS. You can store any data of application in cookie. But what is difference between cookie and session? Cookie...
PHP sessions
Today we will discuss sessions in php. It helps browser to identify user in different pages. We will apply session in our web application. First of all we call session_start function, which starts session. It is very important, that this function must be called before...
Build CRUD Application PHP & Mysql. Remove information from application
In this lesson we'll finish building web application. We only need to write function for delete data. We will use similar approach while writing function for delete. We need not any form for delete....
Build CRUD Application PHP & Mysql. Add information to database
We continue to build php+mysql web application. In this lesson we realize mechanism of adding information to database through interface. First of all we will add form to players.php. There will two fields in our form - player name and country (dropdown list). I...
Build CRUD Application PHP & Mysql. Edit and sava data
We continue to build our php+mysql applicaiton. Today we will realize opportunity for editing and saving data to database. First of all you need understand, how we make our object unique. The page for every object edit.php. But we will add id player which we are going...
Create e-commerce with php and mysql. Create technical task. Part two
Today we will finish to write technical task.