Wednesday 30 August 2017

[ Part 01 of Part 16 pdo in php oop ] Learn how to use PDO using php in ...

Hello Friend

Welcome to 1st part of Part 16 of pdo in php oop by perfect web solutions.

in this video tutorial, you will learn in details about PDO, PDOStatement and PDO Exception by using PHP in Urdu 2017.



If you like the video, then please do like the video and do subscribe to my channel for more videos.



Visit our Fan page on Facebook: https://www.facebook.com/perfect.web.solutions.jhelum

Visit our Fan Page on Twitter: @pwsjlmpk

our WhatsApp group: https://chat.whatsapp.com/6tSVUlX2ltCIsWe6b3UtlU

Visit our Official Website: http://perfectwebsolutions.info

Tuesday 22 August 2017

[ Part 15 Late Static Binding in php oop ] Object-Oriented Programming u...


Hello Friends,



Welcome to Part 15 of Late Static Bindings in php oop using Object-Oriented Programming using php oop in urdu 2017 by perfect web solutions.



As of PHP 5.3.0, PHP implements a feature called late static bindings which can be used to reference the called class in a context of static inheritance.



If you like the video, then please do like the video and do subscribe to my channel for more videos.



Visit our Fan page on Facebook: https://www.facebook.com/perfect.web.solutions.jhelum

Visit our Fan Page on Twitter: @pwsjlmpk

our WhatsApp group: https://chat.whatsapp.com/6tSVUlX2ltCIsWe6b3UtlU

Visit our Official Website: http://perfectwebsolutions.info

Sunday 20 August 2017

[ Part 14 Magic Functions in php oop ] Object-Oriented Programming Using...


Hello Friends,

Welcome to Part 14 of Object-Oriented Programming Using php oop in Urdu 2017 by perfect web solutions.



In this video tutorial, we are going to learn about Magic functions in php oop, which helps you to load classes automatically as you create new objects from your classes.



PHP functions that start with a double underscore – a “__” – are called magic functions (and/or methods) in PHP. They are functions that are always defined inside classes, and are not stand-alone (outside of classes) functions.

If you like the video, then please do like the video and do subscribe to my channel for more videos.



Visit our Fan page on Facebook: https://www.facebook.com/perfect.web.solutions.jhelum

Visit our Fan Page on Twitter: @pwsjlmpk

our WhatsApp group: https://chat.whatsapp.com/6tSVUlX2ltCIsWe6b3UtlU

Visit our Official Website: http://perfectwebsolutions.info

Friday 18 August 2017

[ Part 13 Method Chaining in php oop ] Object-Oriented Programming using...


Hello Friends,

Welcome to Part 13 of Object-Oriented Programming using php by perfect web solutions.

Friends, In this Video tutorial, we are going to learn about Method Chaining in php oop and in you own language Urdu and Hindi.



Method chaining, also known as named parameter idiom, is a common syntax for invoking multiple method calls in object-oriented programming languages. Each method returns an object, allowing the calls to be chained together in a single statement without requiring variables to store the intermediate results.



If you like the video, then please do like the video and do subscribe to my channel for more videos.



Visit our Fan page on Facebook: https://www.facebook.com/perfect.web.solutions.jhelum

Visit our Fan Page on Twitter: @pwsjlmpk

our WhatsApp group: https://chat.whatsapp.com/6tSVUlX2ltCIsWe6b3UtlU

Visit our Official Website: http://perfectwebsolutions.info

Monday 14 August 2017

[ Part 11 Magic Methods Overloading in php oop ] Object-Oriented Program...



Hello Friends,

Welcome to Part 11 of Object-Oriented Programming Using PHP in Urdu 2017 by perfect web solutions.



In this video tutorial, we will learn how to do overloading in PHP using Magic Methods __call and __callStatic.



NOTE: at 8:02 i have said that it accept parameter as string, that is my mistake actually it accepts arguments as an Array, I'm sorry for that. i just noted it after uploading the tutorial.



If you like the video, then please do like the video and do subscribe to my channel for more videos.



Visit our Fan page on Facebook: https://www.facebook.com/perfect.web.solutions.jhelum

Visit our Fan Page on Twitter: @pwsjlmpk

our WhatsApp group: https://chat.whatsapp.com/6tSVUlX2ltCIsWe6b3UtlU

Visit our Official Website: http://perfectwebsolutions.info

Saturday 12 August 2017

[ Part 10 inheritance using Traits in php oop ] Object-Oriented Programm...


Hello Friends,

Welcome to Part 10 of Object-Oriented Programming Using php in urdu 2017 by perfect web solutions.

In this Video Tutorial we are going to learn about Concept of Traits in php oop.



Traits are a mechanism for code reuse in single inheritance languages such as PHP. A Trait is intended to reduce some limitations of single inheritance by enabling a developer to reuse sets of methods freely in several independent classes living in different class hierarchies.



If you like the video, then please do like the video and do subscribe to my channel for more videos.



Visit our Fan page on Facebook: https://www.facebook.com/perfect.web.solutions.jhelum

Visit our Fan Page on Twitter: @pwsjlmpk

our WhatsApp group: https://chat.whatsapp.com/6tSVUlX2ltCIsWe6b3UtlU

Visit our Official Website: http://perfectwebsolutions.info

Friday 11 August 2017

[ Part 09 namespaces concept in php oop ] Object-Oriented Programming us...

Hello Friends,

Welcome to Part 09 of Object Oriented Programming using php in Urdu 2017 by perfect web solutions.



in this video tutorial we will learn about uses of namespaces in php 5.



If you like the video, then please do like the video and do subscribe to my channel for more videos.



Visit our Fan page on Facebook: https://www.facebook.com/perfect.web.solutions.jhelum

Visit our Fan Page on Twitter: @pwsjlmpk

our WhatsApp group: https://chat.whatsapp.com/6tSVUlX2ltCIsWe6b3UtlU

Visit our Official Website: http://perfectwebsolutions.info

Thursday 10 August 2017

[ Part 08 Inheritance - Interfaces in php oop ] Object-Oriented Programm...



Hello Friends,

Welcome to part 08 of Object-Oriented Programming using php in urdu 2017 by Perfect Web Solutions.
In this video tutorial we will see concept of using Interfaces in Multiple Inheritance and Implementing interface into Classes.

Object interfaces allow you to create code which specifies which methods a class must implement, without having to define how these methods are handled.

Interfaces are defined in the same way as a class, but with the interface keyword replacing the class keyword and without any of the methods having their contents defined.

All methods declared in an interface must be public; this is the nature of an interface.

If you like the video, then please do like the video and do subscribe to my channel for more videos.

Visit our Fan page on Facebook: https://www.facebook.com/perfect.web....
Visit our Fan Page on Twitter: @pwsjlmpk
our WhatsApp group: https://chat.whatsapp.com/6tSVUlX2ltC...
Visit our Official Website: http://perfectwebsolutions.info
 

Wednesday 9 August 2017

[ Part 07 Final Methods - Classes in php oop ] Object-Oriented Programmi...


Hello Friends,
Welcome to Part 07 of Object-Oriented Programming using PHP in Urdu by Perfect Web Solutions.

In this video tutorial,  you will learn about Final Keyword for Classes and Methods.

PHP 5 introduces the final keyword, which prevents child classes from overriding a method by prefixing the definition with final. If the class itself is being defined final then it cannot be extended.

If you like the video, then please do like the video and do subscribe to my channel for more videos.

Visit our Fan page on Facebook: https://www.facebook.com/perfect.web.solutions.jhelum
Visit our Fan Page on Twitter: @pwsjlmpk
our WhatsApp group: https://chat.whatsapp.com/6tSVUlX2ltCIsWe6b3UtlU
Visit our Official Website: http://perfectwebsolutions.info

Monday 7 August 2017

[ Part 05 Polymorphism in php oop ] Object Oriented Programming using PH...

Hello Friends,

Welcome to Part 05 of Object Oriented Programming using PHP in Urdu 2017 by Perfect Web Solutions.



In this video tutorial we will learn about polymorphism in PHP it's also called method overriding as well.



Polymorphism is a long word for a very simple concept. Polymorphism describes a pattern in object oriented programming in which classes have different functionality while sharing a common interface.



If you like the video, then please do like the video and do subscribe to my channel for more videos.



Visit our Fan page on Facebook: https://www.facebook.com/perfect.web.solutions.jhelum

Visit our Fan Page on Twitter: @pwsjlmpk

our WhatsApp group: https://chat.whatsapp.com/6tSVUlX2ltCIsWe6b3UtlU

Visit our Official Website: http://perfectwebsolutions.info

Friday 4 August 2017

Learn How to Use GIT and GITHUB effectively in Urdu / Hindi Language in ...

Hello Friends,

Welcome to Learn GIT and GITHUB in Urdu in windows using Command Line Interface ( CMD ).

This is a short tutorial of GIT via CLI in Urdu / Hindi Language,wher you can learn GIT and GITHUB in Windows Using CLI (Command Line Interface). i Hope you will like this tutorial as this will help Beginners to understand what is Version Control System and how to manage it Via CLI , if you learn CLI then you can operate it on any OS LINUX / Osx / Windows or any other Computer support GIT.



Subscribe Today and get updated with latest IT tutorials.

for more information visit @perfectwebsolutions

for Twitter follow at @pwspk



-~-~~-~~~-~~-~-

Please watch: "[ Part 02 Classes and Objects in OOP ]  Object Oriented Programming Using PHP in Urdu 2017"

https://www.youtube.com/watch?v=6ISdz0nw9HM

-~-~~-~~~-~~-~-

Thursday 3 August 2017

[ Part 03 Magic Methods , Static and Const ] Object Oriented Programming...

Hello Friends,

Welcome to Part 03 of Object Oriented Programming Using PHP in Urdu and Hindi 2017.



In this video tutorial, we are gonna learn about Magic Methods ( __construct and __destruct ) as well as the Static type for Methods and Properties in OOP and Const Data Type of Properties.



If you like the video, then please do like the video and do subscribe to my channel for more videos.



Visit our Fan page on Facebook: https://www.facebook.com/perfect.web.solutions.jhelum

Visit our Fan Page on Twitter: @pwsjlmpk

our WhatsApp group: https://chat.whatsapp.com/6tSVUlX2ltCIsWe6b3UtlU

Visit our Official Website: http://perfectwebsolutions.info