by Kamil' Abzalov | Dec 30, 2017 | PHP+MySQL, Tutorials
Create php MVC app. Create database Home » Posts Tagged "php" In last lesson we began to create our PHP MVC application. Today we will create database with phpmyadmin using. Our database will be consist of 5 tables: roles users orders products...
by Kamil' Abzalov | Nov 18, 2017 | PHP, Tutorials
PHP. OOP. Static properties and methods Home » Posts Tagged "php" PHP supports static properties and methods. For declaration of static method or property php has got static keyword Accessing to static properties and methods doesn’t suppose...
by Kamil' Abzalov | Nov 6, 2017 | PHP, Tutorials
PHP. OOP. Propepties and methods scope Home » Posts Tagged "php" We continue to learn basic principles of OOP in PHP. Today we will discuss properties/methods scope. There three modifiers in PHP: public – public properties/methods can be accessed...
by Kamil' Abzalov | Oct 22, 2017 | PHP, Tutorials
PHP. OOP. Classes inheritance Home » Posts Tagged "php" In this lesson we’ll continue to learn OOP in PHP. I recommend you to watch last lesson for your understanding of toda topic. Today we’ll discuss classes inheritance. Inheritance in...
by Kamil' Abzalov | Aug 17, 2017 | PHP, PHP+MySQL, Tutorials
Cookie and SQL injections Home » Tutorials » Category: "PHP" 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...
by Kamil' Abzalov | Aug 17, 2017 | PHP, PHP+MySQL, Tutorials
PHP sessions Home » Tutorials » Category: "PHP" 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,...
by Kamil' Abzalov | Aug 16, 2017 | PHP+MySQL, Tutorials
Build CRUD Application PHP & Mysql. Remove information from application Home » Posts Tagged "php" 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...
by Kamil' Abzalov | Aug 16, 2017 | PHP+MySQL, Tutorials
Build CRUD Application PHP & Mysql. Edit and sava data Home » Posts Tagged "php" 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...
by Kamil' Abzalov | Aug 16, 2017 | PHP+MySQL, Tutorials
Create e-commerce with php and mysql. Create technical task. Part two Home » Posts Tagged "php" Today we will finish to write technical...
by Kamil' Abzalov | Aug 16, 2017 | PHP+MySQL, Tutorials
Build CRUD Application PHP & Mysql. Getting data from several tables Home » Posts Tagged "php" Today we’ll continue create our web application. We’ll select data from two tables. In last lesson we selected all players from players tables....