Today we will work with order page - write checkOrder and deleteOrder functions. CheckOrder function will send email to order owner...
Tutorials
Create PHP MVC app. Get order detail information
In next several lessons we will work with orders. Today we will get detail information from database about order....
Create php MVC app. Add user and send email via php
Today we will make add new use feature in our application. Also we consider capability sending mails via php To send email via php you need to use mail() function. It is important to notice that actually SMTP sends mails. That's why you can't send mails in your local...
Create PHP MVC app. Update and delete user data
In last lesson we learnt read data to custom directive. Today we will make update and delete user data feature in our application...
Create PHP MVC app. Edit use info with angular js custom directive
In last lesson we made how to make custom directives in angular js. Today we will continue to use it, reading data to it....
Create php MVC app. Create custom directive in angularjs
Today I will tell you how to create custom directive in angularjs. In our app custom directive will be html from for edit user personal info. Angular "learns" browsers new tags or attributes with directives. It has a large set of build-in directives, which we have...
Create php MVC app. Get all users
In this tutorial we will begin to make management users section. Our task today will be to select all users from database with their roles. We will make select from two tables, that's why we must use INNER JOIN SQL operator...
Create php MVC application. Edit profile
In this lesson we will make edit profile in our cabinet application - change login, email and password. In this tutorial we will again use angularjs. And we will write UPDATE sql queries....
Create php MVC app. Angular js – edit and delete product from app
In last lesson we began using angular js in our app. Today we continue to write angular code - we will make edit and delete functions in our app. For the server connection we use $http build-in angular service. In homework I suggest you to write add product function...