MOTOSHARE 🚗🏍️
Turning Idle Vehicles into Shared Rides & Earnings

From Idle to Income. From Parked to Purpose.
Earn by Sharing, Ride by Renting.
Where Owners Earn, Riders Move.
Owners Earn. Riders Move. Motoshare Connects.

With Motoshare, every parked vehicle finds a purpose. Owners earn. Renters ride.
🚀 Everyone wins.

Start Your Journey with Motoshare

PHP OOP : Abstract Classes

Abstract Class : when we create abstract class then we can not create object of that abstract class. If we want to use abstract class then we only access with derived class . Just abstract write before the class name. when we create abstract class two condition occurs one is abstract method like :- abstract … Read more

PHP OOP : Overriding properties and Methods

Overriding Properties : Same properties on both classes (base and derived class). Overriding Methods : Same name of method on both classes base or derived class.

PHP OOP : Access Modifier (public, protected, private)

What is the access modifier? Restrictions on properties and methods. Types of access modifier public protected private Public : Access on base as well as derived class and outside of the class. Everyone can see and access the data. Not secure. Override use. Protected : Base and Derived class. No one gets access throughout the … Read more

PHP OOP : Inheritance

What is inheritance in php? Inheritance is properties of PHP. Accessing the feature of one class of another class. Three types that is single, multiple and multilevel inheritance. It is the four pillars of oops. It allows a class to reuse the code from another class without duplicating it. Two classes one is base/main another … Read more

PHP OOP : Constructor function

What is Constructor ? Constructor is a special type of function of a class which is automatically executed when object of that class is created. Constructor is also called as magic function because in php constructor is start usually with two underscore characters. It saves lot of time on big project. Example of Constructor :-

Introduction to PHP OOP

What is PHP? PHP stands for hypertext preprocessor. It is widely used in backend programming language. PHP programming patterns are procedural/core php and object oriented. Lots of framework are use like laravel, CakePHP, Yii, Zend, Codeigniter etc. Code more modular and reusable. Well organised code. Easier to debug. Best for large website projects. Why is … Read more

JavaScript : Advantages and disadvantages of External JavaScript ?

Advantages : Following are the Advantages of javaScript over external :- Reusability of code. Easy code readability. It Enables both web designers and coders to work with html and js files. With these small js files, you can use Google closure or YUI Compressor or other minifying tools to reduce the size and make it not … Read more

Bootstrap : Default Text Sizes

Bootstrap’s font sizes are calculated off of the body font size by using rem values. If you changethe body font size all styles will be increased/decreased automatically. Rem stands for “root em”because it calculates the size based on the size of the root of the document or body tag. Tag / Class Default Font size … Read more

Bootstrap Utilities : “Visibility”

With visibility utilities you have control the visibility, without modifying the display, of elements.

Bootstrap utilities : “Vertical align”

Easily change the vertical alignment of inline, inline-block, inline-table, and table cell elements. Change the alignment of elements with the vertical-alignment utilities. These are the classes:- .align-baseline, .align-top, .align-middle, .align-bottom, .align-text-bottom, and .align-text-top as needed.