Google Map Nearest Place Finder Query

Few days ago while i am working on projects where using google map,i face a problem that i have already few place’s in my database with their latitude and longitude,now i need to find nearest place’s depend on a certain distance.That time i found a solution,here i am going to share this how will be 

Continue Reading…

oauth2 custom error message

oauth2 with laravel

oauth2 is a service that is mostly used for api authentication.Let know a short note about oauth2.OAuth 2 is an authorization framework that enables applications to obtain limited access to user accounts on an HTTP service, such as Facebook, GitHub, and DigitalOcean.Like we want to build an api based application,that time we have a think 

Continue Reading…

Basic OOP in Programming Language

OOP Stands for Object Oriented Programming. OOP is not a programming language it is just a method or technique of programming where a programmer write code using a standard way rather than procedural way. The main thing of OOP is Class & Object (Instant). So, what is Class & Object? Well, Class is a set 

Continue Reading…

Cronjob in Linux Server

I have a cloud server on AWS in here i face a problem to configure cornjob.In this article i share how to configure cornjob in linux server or your linux pc.You can write script for daily,monthly,weekly and hourly also for that your file structure will be /etc/cron.daily /etc/cron.hourly /etc/cron.monthly /etc/cron.weekly If you also write shell 

Continue Reading…

Pass Blob File Though Ajax

Blob means Binary Large Object.Blobs are typically images, audio or other multimedia objects, though sometimes binary executable code is stored as a blob.In this article we know how to pass a blob file through ajax. Pass Blob File Though Ajax Keep it mind to keep contentType,processData keep false. processData: false, contentType: false,

PHP7 Null coalesce operator

PHP7 Improved performance up to twice as fast as PHP 5.6 ,Consistent 64-bit support,Combined comparison Operator (),scalar type declarations,return type declaration,null coalesce operator any many others new features.So then first see what is this operator.(??) is null coalesce operator.In previous version till 5.6 we was see a operator that is called ternary operator(?).Null coalesce operator 

Continue Reading…