Yii2 course

Yii2 course смотреть последние обновления за сегодня на .

Yii2 PHP Framework - Full Course (Build a YouTube Clone)

145811
2921
237
07:04:24
28.04.2020

Yii is a fast, secure, and efficient PHP framework used to create all kinds of web apps. Learn how to use Yii2 in this full tutorial for beginners by building a YouTube clone. 🎥This course was developed by Zura Sekhniashvili. Check out his YouTube channel: 🤍 💻Code: 🤍 ⭐️ Course Contents ⭐️ ⌨️ (0:00:00) Introduction ⌨️ (0:03:08) Demo ⌨️ (0:06:27) Install necessary tools ⌨️ (0:09:28) Project setup ⌨️ (0:25:02) Create Database and run migrations ⌨️ (0:28:48) Signup, activate account and test login ⌨️ (0:33:00) Change Url format ⌨️ (0:34:46) Explore project structure & entry script ⌨️ (0:36:41) Config files ⌨️ (0:38:12) Controllers & actions ⌨️ (0:42:30) Views ⌨️ (0:44:59) Install Bootstrap 4 ⌨️ (0:48:20) Asset bundles ⌨️ (0:50:11) Layouts ⌨️ (0:54:14) Application properties ⌨️ (0:56:25) Navbar widget ⌨️ (0:57:28) Components ⌨️ (1:04:07) Nav widget ⌨️ (1:05:19) Identity Class ⌨️ (1:06:02) Active Record class ⌨️ (1:10:45) Behaviors ⌨️ (1:12:19) Finish studio layout ⌨️ (1:14:48) Url creation ⌨️ (1:17:31) More on layouts ⌨️ (1:19:32) Finish studio layout ⌨️ (1:30:25) Create auth layout (Nested layouts) ⌨️ (1:35:16) Aliases ⌨️ (1:37:11) Video table migration ⌨️ (1:48:05) Generate Video model using Gii ⌨️ (1:49:48) Active Record & Models ⌨️ (1:50:34) Model rules ⌨️ (1:52:44) Generate Video CRUD using Gii ⌨️ (1:57:42) Video create page (Working with forms) ⌨️ (2:07:15) Video upload ⌨️ (2:25:42) Video page ⌨️ (2:43:39) Video status change ⌨️ (2:46:25) Thumbnail upload ⌨️ (2:55:31) Thumbnail resize ⌨️ (3:01:27) Handle upload errors ⌨️ (3:04:39) Save video tags ⌨️ (3:09:20) Video listing page (Gridview & Data providers) ⌨️ (3:20:09) Restrict upload for authorized users only ⌨️ (3:22:59) Implement frontend layout ⌨️ (3:39:23) Video delete ⌨️ (3:47:18) Output published videos on frontend ⌨️ (4:00:31) Video view page ⌨️ (4:12:53) Count video views ⌨️ (4:23:08) Implement Like/Dislike ⌨️ (4:56:50) Channel page ⌨️ (5:08:05) Subscribe/Unsubscribe ⌨️ (5:21:16) Many to Many relations ⌨️ (5:24:56) Output videos on channel page ⌨️ (5:31:33) Email send using mailtrap ⌨️ (5:44:25) Search ⌨️ (6:00:07) Similar videos ⌨️ (6:11:05) History page ⌨️ (6:23:08) Implement dashboard ⌨️ (6:39:39) Debug bar ⌨️ (6:42:13) Relation eager loading ⌨️ (6:45:08) Caching ⌨️ (6:50:12) Overview, code cleanup and improvements Learn to code for free and get a developer job: 🤍 Read hundreds of articles on programming: 🤍

Yii2 PHP Framework Tutorial - Crash Course for Beginners

99613
1009
148
01:46:46
14.08.2019

The following video explains what is Yii2 PHP framework, what are its advantages and why you should learn it. We will build a mini blog application with the following features: - Authentication - Registration - Password hashing - Working with databases - Restricting URLs for unauthenticated users - Working with forms - Validation Source Code: 🤍 Object-Oriented PHP for Beginners: 🤍 Installing Yii2 Framework: 🤍 Grow your business 10X with custom Yii web application development services. Click on the link: 🤍 = AUDIO GEAR I HAVE My Main Microphone - 🤍 Microphone Scissor Arm Stand - 🤍 Microphone Shock Mount with Pop Filter - 🤍 Audio Interface - 🤍 Microphone Pop Filter Mask Shield - 🤍 CHEAP AUDIO SETUP Microphone + Shock mount + Scissor Arm - 🤍 = Check my Github: 🤍 Follow me on social media: 🤍 🤍 🤍

Getting Started with yii2 framework - Course introduction

25559
314
49
00:13:01
30.09.2019

The following video is an introduction video on yii2 framework. This video is the first video from the series of videos around the framework. This video is a course introduction video. All next videos will be focused on one particular topic and I am going to cover all basic and advanced stuff like: - forms - models - controllers - databases - caching - logging - rbac and so on... If you prefer to see one video which covers the most common features of the framework (but not in too much details), I recommend the following crash course video, where I build a minimalistic blog. Yii2 Crash course: 🤍 Building a REST API using yii2. 🤍 Videos about Object Oriented PHP. 🤍 I will answer a few questions about the framework and then we can install it and write "Hello World". Questions answered in the video: 1. What is yii2 framework? 2. What advantages does it have? 3. Is it popular? 4. What are its important features? 5. What are the prerequisites to learn yii2? Install XAMPP on windows: 🤍 Install LAMP stack on Ubuntu 19.04: 🤍 Checkout my github 🤍 and/or follow me on social media: 🤍 🤍

Build a REST API using Yii2 PHP Framework

46247
813
155
01:25:54
02.09.2019

In this video, we will build a REST API using Yii2 PHP framework. If you do not have experience previously working on Yii2 framework, I recommend to check out my "Yii2 Crash course" video before watching this video: 🤍 Source Code - (Really appreciate if you give it a star - ★) 🤍 Yii2 Advanced template installation and set up virtual hosts on Window and on Linux. 🤍 In this video, we are going to build a blog engine REST API using Yii2 PHP framework. We are going to interact with 2 resources: posts and comments. We will see how to create endpoints to get, create, update or delete posts and comments. We will see how to paginate and sort. We will learn how to enable authentication and authorization so that only authenticated users will be able to create, update or delete posts and comments and we will also see how to restrict access to particular posts so that only owner of the post or comment will be able to update or delete. We will use postman to make request into our API. Follow me on social media: 🤍 🤍 🤍

Yii2 E-commerce website - Full Working Process | Part 1

41413
882
139
11:56:51
31.12.2020

I started building an open source E-commerce website in Yii2 framework. This video is the first part of unprepared, unedited process of building the E-commerce website. Part 2: 🤍 Part 3: 🤍 Project Source Code (⭐️ Give it a star ⭐️) 🤍 Support me by subscribing - 🤍 Timecodes 00:00:00 - Introduction 00:01:29 - Demo 00:07:36 - Introduction 00:10:16 - Project setup 00:25:52 - Integrate SB Admin 2 into backend 01:04:34 - Generate migrations 01:31:33 - Generate models 01:36:54 - Generate and customize products CRUD 03:18:19 - Display products on frontend 03:43:11 - Customize and bugfix signup and login 04:05:02 - Handle user profile and address update 04:55:08 - Cart basic functionality 06:16:48 - Implement change quantity in cart 06:41:58 - Implement checkout 07:12:55 - Implement online payments with PayPal 09:08:00 - Validate PayPal transaction & finish checkout 10:06:47 - Send email when order is paid 10:41:36 - Fix password reset bugs 10:46:29 - Password change 10:55:47 - Update checkout page & Bug fixing 11:18:25 - Display orders in backend, Sorting & Filtering 11:45:38 - Customize Formatter class 11:49:23 - Display Order items Follow me on social media: 🤍 🤍 🤍 Check my Github: 🤍

Top 11 Reasons To Choose PHP Yii2 Framework (1)

8741
137
36
00:09:45
29.06.2020

Part 1. 11 - 9 As a Tech Lead who's built more than 100 websites and most of them with the Yii and Yii2 framework, believe me when I say, it's serious business. But there's more than just a name. Yii2 is a powerful and well-structured framework and here are the top 11 reasons why I chose it as my framework of choice. Check out our work: 🤍

Learning Yii 2: The Course Overview | packtpub.com

5711
18
1
00:03:26
05.11.2015

This playlist/video has been uploaded for Marketing purposes and contains only introductory videos. For the entire video course and code, visit [🤍 This video will offer the overview of the course. For the latest web development video tutorials, please visit 🤍 Find us on Facebook 🤍 Follow us on Twitter - 🤍

Базовая структура приложения на Yii2

10524
175
19
00:09:28
27.02.2018

Пройди БЕСПЛАТНО профориентацию в IT - 🤍 Мы узнаем, как именно Yii2 может помочь нам в построении веб-приложений, на примере простого Каталога товаров. Создадим базовую структуру приложения, и посмотрим, как Yii2 может помочь нам с ошибками, возникающими в процессе разработки. Курс: "Основы Yii2", урок 2 Полезные ссылки: 🤍 🤍 🤍 🤍 🤍 - код примеров Не ограничивай себя видео уроками на YouTube! Узнавайте еще больше полезной информации! Общайтесь с опытными разработчиками, преподавателями и развивайтесь через личное общение! Школа онлайн-образования: 🤍 Telegram: 🤍 Slack: 🤍 Сайт: 🤍 Instagram: 🤍 Группа вконтакте: 🤍 Facebook: 🤍 Twitter: 🤍 Больше уроков от lofblog: #loftblog Все уроки по хештегу: #loftblogYii2 Полезные уроки для веб-программиста: #вебпрограммист #Yii2 #PHP - Не забываем, что самый лучший способ сказать "спасибо" - нажать кнопку "нравится" и скинуть ссылку на урок друзьям. Ничто другое так сильно не мотивирует автора продолжать работу :)

Working with Yii2 Database Access Objects (DAO) | yii2 tutorials

6398
112
21
00:30:22
05.11.2019

The following video covers working with database with DAO. - Connecting to any RDBMS (Mysql is used as an example) - Execute SQL queries using DAO - Bind parameters to SQL queries - INSERT, UPDATE, DELETE - Insert multiple records - User one column as an assignment value during insert or update - Using upsert method to create or update existing record in database - Properly quoting tables and column names using backtick - Using table prefix. Source files: 🤍 Read more about DAO: 🤍 Connection class API Docs: 🤍 Command class API Docs: 🤍 Check my other videos about yii2 framework Yii2 Crash course: 🤍 Building a REST API using yii2: 🤍 Integrate Landing page into yii2: 🤍 Getting started with yii2 framework: 🤍 Controllers: 🤍 Views & Rendering content: 🤍 Layouts: 🤍 Widgets: 🤍 Check my Github: 🤍 Follow me on social media: 🤍 🤍

Yii2 Lesson - 22 Adding Classes to Rows in the GridView

30275
153
21
00:05:02
02.02.2015

Thanks for watching this Yii Lesson that explains how to add a class to a grid row after checking a condition. View all video on this blog - 🤍 and add your comments and requests there. Become a patron - 🤍

Yii2 Lesson - 1 Installing the framework and Creating Our First Application

378447
766
102
00:04:38
22.10.2014

This Yii2 Lesson covers installing the framework and creating our first application. Exploring what we created. Follow me at - 🤍 Visit the blog - 🤍

yii2 application structure & entry script - yii2 tutorials | Part 1

6659
90
8
00:06:58
01.10.2019

In the following video we will understand the application structure of yii2 framework. We will see request life-cycle and have a look at application config file. Getting started with yii2: 🤍 Yii2 crash course: (100 minutes video where we build a mini blog application): 🤍 Building a REST API using yii2. 🤍 Follow me on social media: 🤍 🤍 🤍

Yii2 Application Development Solutions - Volume 2 : The Course Overview | packtpub.com

504
1
00:07:42
17.03.2017

This playlist/video has been uploaded for Marketing purposes and contains only selective videos. For the entire video course and code, visit [🤍 This video gives an overview of entire course. For the latest Application development video tutorials, please visit 🤍 Find us on Facebook 🤍 Follow us on Twitter - 🤍

Mastering Yii 2: The Course Overview | packtpub.com

4464
10
0
00:03:39
03.11.2015

This playlist/video has been uploaded for Marketing purposes and contains only introductory videos. For the entire video course and code, visit [🤍 This video will offer an overview of the course. For the latest web development video tutorials, please visit 🤍 Find us on Facebook 🤍 Follow us on Twitter - 🤍

Урок 1. Фреймворк Yii2. Быстрый старт. Установка фреймворка Yii2

29368
370
39
00:11:43
10.02.2020

Подробнее о курсе "Фреймворк Yii2. Быстрая разработка с современным фреймворком": 🤍 В этом уроке будет показана установка фреймворка Yii2 на сервер. В качестве варианта установки будет выбран рекомендуемый вариант – установка при помощи Composer. Из урока вы узнаете о необходимом окружении для работы (веб-сервер, редактор кода), а также о минимальных требованиях к окружению. Установив фреймворк, мы получим не просто голый каркас, но простое приложение, с которого можно начать знакомство с фреймворком и его возможностями.

Сайт на Yii2 | Урок#13. Админка сайта и контроль доступа на фреймворке Yii2

5176
74
17
00:09:38
01.12.2019

Поддержать канал: YooMoney: 🤍 Paypal: 🤍 Patreon: 🤍 Новости, статьи и много интересного из мира программирования на нашем телеграм-канале: 🤍 Устанавливаем админку, настраиваем страницу входа и контроль доступа для страниц сайта на фреймворке на Yii2. Регистрация хостинга: 🤍 Исходники проекта: 🤍 Расширение Admin Panel: 🤍 Подробнее о миграциях: 🤍 Подробнее о контроле доступа: 🤍 Документация по AccessChecker: 🤍

Yii2 Lesson - 33 Full Calendar part - 1/2

31483
110
31
00:11:56
12.06.2015

Thanks for watching this lesson. Apologies for the lack of preparation. Its been some time I created a lesson. Become a patron - 🤍 Take a look at my blog - 🤍

How to Make a CRUD Application Tutorial using PHP Yii2 Framework

29665
295
38
01:50:54
17.01.2018

This video demonstrates how to download and install php's one of the widely used MVC framework YII, here we will discuss some of the basic concepts of yii's second version. In this beginners tutorial series we will write the entire code by our self for performing basic crud operations like CREATE, READ, UPDATE and DELETE from the MYSQL server. Support us on Patreon: 🤍 Here we will learn how to create or insert a record into database, how to read or fetch all the records from the database and display them on the homepage of yii2 application, how to read a specific record from the database based on their record id, how to update a record from database based on their id and how to delete a record from the database based on their id. This is a complete tutorial series for beginners and advanced kind of users to learn some of the basic concepts of yii2 framework. 🤍 Related and useful Videos How to make a classified website using laravel 🤍 Filter records using PHP 🤍 How to create reports using php 🤍 How to make a college management system using codeigniter 🤍 How to make laravel 5.4 crud tutorial 🤍 Codeigniter crud application with bootstrap 🤍 Laravel registeration application 🤍 Laravel blog tutorial 🤍 Codeigniter registration application 🤍 filter records from database using dropdown 🤍 Send SMS using Laravel 🤍 Registration application using angularjs 🤍 Download and install angularjs 🤍 Download and install zend framework 🤍 Moving codeigniter project from local to live server 🤍 Upload image using codeigniter 🤍 Send SMS using codeigniter 🤍 How to make an ecommerce store using magento 🤍 How to run PHP in localhost 🤍 Send SMS using codeigniter to multiple recipients 🤍 Upload an image using core php 🤍 CRUD Tutorials on various PHP frameworks Laravel CRUD Tutorial 🤍 Codeigniter CRUD Tutorial 🤍 Cakephp CRUD Tutorial 🤍 Symfony CRUD Tutorial 🤍 Core PHP CRUD Tutorial 🤍 Magento ecommerce Tutorial 🤍 laravel blog 🤍 codeigniter blog 🤍 yii2 Framework 🤍 Zend Framework3 🤍 Follow us on Facebook & Twitter 🤍 🤍

Learning Yii 2: The Course Overview | packtpub.com

134
2
0
00:03:26
04.11.2015

Part of 'Learning Yii 2' video series. For full Course visit: 🤍 This video will offer the overview of the course. For the latest web development video tutorials, please visit 🤍 Find us on Facebook 🤍 Follow us on Twitter - 🤍

Url Creation and routing in yii2 framework | yii2 tutorials

7732
150
27
00:15:18
08.05.2020

In this video I will explain how URL routing and Url creation works in yii2 framework. It is very easy to write URLs incorrectly in yii2 framework. I will show you what is the best practice to create URLs. Read more about URL Creation. 🤍 Check my other videos about yii2 framework Yii2 Crash course: 🤍 Building a REST API using yii2: 🤍 Vue.js & Yii2 REST API notes app - 🤍 Integrate landing page into yii2 - 🤍 Check my Github: 🤍 Follow me on social media: 🤍 🤍 🤍

Yii2 Migrations - Working with yii2 migrations | yii2 tutorials

9814
162
17
00:27:52
19.11.2019

In the following video I will setup the connection to the database and show you how to work with database migrations in yii2 framework. In this video we will see: - How to create database migrations - What is the difference between up/safeUp and down/safeDown methods in migration class - Create table using yii2 migration - Add column using yii2 migration - Create foreign key using migration - Create index using migration - Drop tables, columns using yii2 migrations - How to generate database migration files using special naming (REALLY useful thing) - How to change migration folder - How to revert, apply or re-apply only several migrations Source files about migrations: 🤍 Read more about Migrations: 🤍 Migration class API docs: 🤍 Check my other videos about yii2 framework Yii2 Crash course: 🤍 Building a REST API using yii2: 🤍 Integrate Landing page into yii2: 🤍 Getting started with yii2 framework: 🤍 Controllers: 🤍 Views & Rendering content: 🤍 Working with DAO: 🤍 Check my Github: 🤍 Follow me on social media: 🤍 🤍

Yii2 Lesson - 27 Complex Forms

36076
173
42
00:08:27
15.03.2015

Thanks for watching this lesson on Complex forms in Yii2 Become a patron - 🤍 Take a look at my blog - 🤍

Querying data using Query Builder | yii2 tutorials

6702
115
15
00:18:30
03.12.2019

In this video we will see how query data using query builder so that our select can be run on multiple relational databases. We are going also to see how to deal with the problem when framework improperly quotes column names with back ticks which causes SQL syntax error. The methods explained in the video. - select() - from() - where(), andWhere(), orWhere() - all(), one(), count(), column(), scalar(), exists() - limit() - offset() - orderBy() - groupBy() - having() Source Code: 🤍 Documentation: 🤍 - Check my other videos about yii2 framework - Yii2 Crash course: 🤍 Building a REST API using yii2: 🤍 Integrate Landing page into yii2: 🤍 Getting started with yii2 framework: 🤍 Migrations: 🤍 Working with DAO: 🤍 Working with Active Record classes: 🤍 Check my Github: 🤍 Follow me on social media: 🤍 🤍

Three reasons why Laravel is a dying framework

23261
359
87
00:14:27
26.07.2022

Today I'm going to give you three reasons why Laravel is a dying framework. For anyone in a hurry: REASON 1: Worst in class benchmarks REASON 2: Zero stability REASON 3: Zero innovation Shall I type about each of these things in a little more detail? Okay. Let's go. Reason 1: Worst in class benchmarks There's no denying that Laravel has ghastly benchmarks. It's slow. It's bloated. It's over-engineered. In the past, Taylor Otwell responded to this by saying that the reason why these kinds of claim are unfair is because people were using "fully loaded" Laravel applications for the various benchmark tests where Laravel gets consistently trounced. Given the fact that a fully loaded Trongate is now proven to be multiple times faster than Laravel, I don't think Otwell's excuse cuts in. I think benchmarks matter. The excuses aren't working. This is reason one. Reason 2: Zero stability Laravel is the most frequently rewritten of all the major frameworks. Until very recently they were committed to breaking their own framework every six months. Now, they're committed to breaking it every twelve months. This is not acceptable. Clients deserve better. Moreover, the "Laravel deception" - where developers mislead clients into paying for version upgrades under the false pretence of "security patches" is hereby called out. I think it's a scam and I'm looking forward to educating business owners about the Laravel Deception. What they have done is completely unethical, in my opinion. Regardless of the ethics, it seems clear to me that everybody is sick of rewrite culture. Clients don't want it. Developers don't want it. This is reason 2. Reason 3: Zero innovation Laravel does not have a single unique killer feature. Not one. Yes, it has lots and lots of bells and whistles. Some of them are nice. Some of them are positively good. However, that's not going to cut it. The fact is, there's not a single Laravel feature you can show me that's not already available from elsewhere. Laravel desperately needs a unique killer feature. Impersonating other technologies doesn't count. I think Laravel's failure to innovate is now becoming a huge problem that developers are finding difficult to ignore. All of these are things that I could have told you three years ago. What's new, however, is that - developers are starting to say 'no' to Laravel. That's real. That's new. That's a major development. So there you have it... Laravel is a dying framework. You heard it here first.

Создание Web-сайта на PHP-фреймворке Yii2. Часть 1.

33932
658
76
01:15:52
27.06.2018

Промокод на скидку 15% на все курсы ITVDN- H94BCAB Больше курсов по PHP - 🤍 Мы начинаем серию вебинаров по изучению PHP-фреймворка Yii2 на примере создания сайта видеошколы. Часть 1- 🤍 Часть 2- 🤍 Часть 3- 🤍 Содержание: 00:00:00 Soft - Настройка рабочего места. 00:13:05 Index - Первый кирпич проекта. 00:19:05 GitHub - Все ходы записываются. 00:21:40 Composer - Установка пустоты. 00:37:15 Application - Запуск фреймворка. 00:53:45 Controller - Точка входа программиста. 00:59:30 Views - Представления начинаются! Мы всё сделаем вручную, с нуля, не загружая готовых шаблонов, чтобы лучше понять принцип работы фреймворка Yii2 и его суть. На первом вебинаре мы подготовим рабочее место, загрузим и запустим ядро Yii2, напишем контроллер и представление. Ведущий: Евгений Волосатов, магистр математики и информатики, 🤍Volosatov

Yii2 Lesson 28 - Dynamic Forms in Yii Part 1

57109
193
29
00:13:47
15.04.2015

Thanks for watching this tutorial Become a patron - 🤍 Take a look at my blog the code is going to be there - 🤍 follow me on twitter - 🤍Uthpala_419

Aplicación WEB con PHP y MYSQL ► 🎁 CRUD yii2 Framework

22303
648
121
02:17:20
29.03.2021

Más cursos en: 🤍 Curso completo, segmentado, sin publicidad en: 🤍 Aquí tienes videos para aprender a hacer aplicaciones crud en el lenguaje que quieras ✅ Crud Laravel 8 🤍 ✅ Crud CodeIgniter4 🤍 ✅ Crud php crudo 🤍 ✅ Crud Node&express 🤍 ✅ Crud Python&flask 🤍 ✅ Crud Java 🤍 ✅ Crud .NET+MVC&C# 🤍 ✅ Crud Golang 🤍 Únete a este canal para acceder a sus beneficios: 🤍 Temario del video: Aplicación WEB con PHP y MYSQL ► 🎁 yii2 BLOQUE 1 - Empezar con Yii Framework 00:00 (-).-INTRODUCCIÓN 01:48 (-).-PAUTAS - Instalación - Estructura 09:07 (-).- VISTAS - Creando una vista -Creando un controlador - Creando un modelo 23:50 (-).- MVC - Mostrando Formularios - Mostrando Una Suma - Url de acceso en el menú -Creando una base de datos - Creación de un CRUD con gii - Creación de campo de archivo - Construcción de un método -Guardando Imagen en uploads - Insertar rutas en DB 01:20:14 .- Borrando imagen de uploads -Modificando Registros - Mostrar imágenes - Mostrar Imágenes en Form - Agregar Paginación 01:37:29 .- Menú para el CRUD - Login y pass del administrador - Bloquear contenido - Bloquear acceso en menú - Vista Lista de elementos - Controlador de Lista de elementos - Muestra de Elementos de lista -Bloquear y redireccionar 02:13:12 (28).-Ajustes Finales 02:16:43 (-).-DESPEDIDA

Learn Yii Framework Part 1: Creating Yii application for the first time

28838
113
19
00:12:58
10.10.2017

Creating Yii Application is very simple. I will try to explain in an easy way so that you can do it on your own. Learn Yii Framework : Part 1: Creating Yii application for the first time 🤍 Part 2 : Understanding Encapsulation and Inheritance Concepts 🤍 Part 3 : Understanding Flow control in MVC Framework 🤍 Part 4 : Yii Generate Model Controllers and Views 🤍 Yii Framework Creating Yii application for the first time Latest Yii Framework Videos Yii Framework for beginners

PHP Frameworks - CakePHP, Yii, Zend and Codelgniter - PHP Training Tutorial

28739
74
9
00:09:39
15.04.2014

Get my free 2+ hour PHP programming course. Click here to get the free course ► 🤍 Includes 16 videos to help you learn the essentials of PHP. During this video, discover some of the popular frameworks available when using PHP, including the CakePHP, Yii, Zend and Codelgniter frameworks. Get the full course on PHP for Beginners here: 🤍 Get the full course on PHP Advanced course here: 🤍 Watch the entire PHP tutorials: 🤍 Learn how to use Bootstrap to create a responsive website: 🤍 AngularJS playlist here: 🤍 MySQL training: 🤍 Java training: 🤍 Dreamweaver tutorials: 🤍 HTML5 training: 🤍 Stay in touch: SimonSezIT.com: 🤍 If you enjoyed the video, please give a "thumbs up" and subscribe to the channel ;-)

Yii2 Crash Course Indonesia (3 Jam)

1522
41
1
03:02:09
26.11.2019

Video ini menjelaskan tentang Yii2 Framework, kelebihannya dan kenapa kamu harus belajar menggunakannya. Kita akan membangun sebuah blog dengan fitur-fitur seperti berikut: - Database dan migration - Autentikasi - Registrasi - Manajemen user dengan hak akses (Role Based Access Control) - Custom form dan validation Source Code: 🤍 Follow me on social media: 🤍 🤍 🤍

Yii2 Lesson - 38 Asset Files

21825
99
15
00:04:18
22.06.2015

Thanks for watching this lesson Become a patron - 🤍 Take a look at my blog - 🤍

Yii2 Lesson - 32 Global Search

24957
132
23
00:05:03
09.05.2015

Thanks for watching this lesson Become a patron - 🤍 Take a look at my blog - 🤍

yii2 working with request - yii2 tutorials | part 8

6854
159
12
00:14:30
16.10.2019

The video covers the following topics: How to access GET and POST data from the request. How to handle a request made with ContentType: application/json. How to handle PUT/DELETE and other types of requests. How to get parts of the request URL: Hostname, query string and so on. How to get headers of the request. How to detect the method and type of the request. How to get User Agent, User IP and so on. Official documentation about request: 🤍 Request component API documentation: 🤍 Read more about CSRF validation: 🤍 Check my other videos about yii2 framework Getting started with yii2 framework: 🤍 Controllers: 🤍 Working with models: 🤍 Views & Rendering content: 🤍 Yii2 Crash course: 🤍 Building a REST API using yii2: 🤍 Check my Github: 🤍 Follow me on social media: 🤍 🤍

Vue.js & Yii2 REST API notes app - Project Setup | Part 1

11231
260
21
00:07:02
16.03.2020

In this video series I will build Notes application with Vue.js and Yii2 framework. First we will focus on Vue.js side and build UI with login and registration forms. The UI will also have possibility to create, update and delete notes based on the static notes array. Then, I will move on Yii2 side and create REST API for authentication, registration and working with Notes. In the next part of the video we will connect our UI to API and finalize the project. In the last part of the video we will deploy our application into Digitalocean with SSL. All - 5 parts of the project. Part 1 - 🤍 Part 2 - 🤍 Part 3 - 🤍 Part 4 - 🤍 Part 5 - 🤍 ⭐⭐ Project source code ⭐⭐ 🤍 📔📔 Demo 📔📔 🤍 Check my Github: 🤍 Follow me on social media: 🤍 🤍 🤍

Yii2 Lesson - 12 Creating Modules

63207
246
55
00:09:30
17.12.2014

Thanks for watching Yii2 creating Modules stay tuned for more yii tutorials Subscribe to the DoingITeasyChannel and don't forget to follow me on twitter ⭐ Kite is a free AI-powered coding assistant that will help you code faster and smarter. The Kite plugin integrates with all the top editors and IDEs to give you smart completions and documentation while you’re typing. I've been using Kite for 6 months and I love it! 🤍 Support me - 🤍 Follow me at - 🤍 Visit Our blog - 🤍

Yii2 Lesson - 2 Routing in Yii2

150818
507
41
00:06:13
22.10.2014

Thanks for watching my tutorials. In this lesson you will learn about routing in Yii. Creating your own actions and view files ⭐ Kite is a free AI-powered coding assistant that will help you code faster and smarter. The Kite plugin integrates with all the top editors and IDEs to give you smart completions and documentation while you’re typing. I've been using Kite for 6 months and I love it! 🤍 Visit Our blog - 🤍

Yii2 Lesson - 31 Submitting Forms Using Ajax

55309
213
34
00:08:27
09.05.2015

Thanks for watching this lesson. Stay tuned for more lessons on yii2. Become a patron - 🤍 Take a look at my blog - 🤍 Follow me on twitter 🤍Uthpala_419

Introduction & Installation Part #1 | Yii2 tutorials in hindi | Yii2 PHP Framework Tutorial

12752
82
15
00:05:58
31.10.2020

In this video you will learn about yii2 php framework and how to install or download. Yii2 PHP Framework Tutorial Yii2 tutorials in hindi Yii2 Project Code:- 🤍 Yii2 PHP Framework Tutorial Playlist 🤍 #yii2#yii

Yii2 Lesson - 30 Karthik Gridview Expand Row

41322
165
30
00:11:56
15.04.2015

Thanks for watching this tutorial stay tuned for more subscribe everyone Become a patron - 🤍 Take a look at my blog all the code is going to be there - 🤍 Follow me on twitter 🤍Uthpala_419

Yii2 Lesson - 56 Connecting To Multiple Databases

11498
80
14
00:03:06
09.06.2016

Learn how to connect to multiple database in a single yii application. Become a patron - 🤍 Follow me on Twitter 🤍Uthpala_419 Take a look at my blog - 🤍

Назад
Что ищут прямо сейчас на
yii2 course zm cso Among Us рисунки 胡蝶 sims 4 rehberlik прятки в тц shaikh дота гайды rich evans levo rage автоподсос gowes downhill oldromance jingle bell rock ukulele cover discord unnamed server folder dhan vapsi meara rose age ender 2 pro firmware IQOS сравнение володин медитация