Today we will begin to use angular in our project. We will make reading data about products from database using angularjs Also I notice, we need angular-route. Make sure, you use the same version of angular and angular route. If you forget angular, you may see my...
Tutorials
Create php MVC application. Upload CSV file
One of subscribers asked me to shoe CSV file uploading and handling it in our app. In this lesson we'll upload CSV file, read data from it and record data from file to application database While uploading any type of file to the server we must notice several key...
Create php mvc app. Routing refactoring
After a long timeout I recorded a new tutorial in which we would make routnig refactoring. The reason of it is our application url structure. After refactoring our routing will be more flexible, will to handle url paths and GET parameters....
Create PHP MVC application. Sessions. Get all orders
We continue to make our simple php mvc application and today we will add sessions mechanism to our application to avoid access to cabinet main page to unauthorized users. Also we will create method, which will get all orders from database with its detail information....
Create php MVC application. Cabinet main page
Today our task is cabinet main page making. This page requires large html coding. That's why I will use ready-to-use html template because I want to draw your attention to the more important tasks for you. You can download template by this link. After page template...
Create php mvc app. Make authorization in application
We continue to develop our php mvc app and we will make authorization mechanism in our app today.Last lesson we created form. Today we'll make some changes and also dynamic avatar image changing depending on the user entered data. First of all we must create .htaccess...
Create php MVC application. Configuration files and creating routing file
Today we will begin to write code of our application. We'll write configuration files, database connection class and routing class. Also we'll create parent controller, model and view classes and controller and template for app main page. First of all we need to start...
Create php mvc app. Files and folders structure
Today we will create files and folders structure of our php mvc project. You can watch it in this link. First of all I'll show you how to make database backup with phpmyadmin. It has Export tab, which allows you to make flexible settings for backup file. You can set...
Jquery plugins
In last lesson we finished to learn jquery basics. With jquery functions you can not only to manipulate html, but extend jquery capabilities - you can write plugins. Plugin is software decision, which extends existing functionality of any program/library/framework. In...