Category: Web Development

PayPal

Introduction to Paypal

To facilitate transfer of money between the two parties over the internet, an online payment service named as PayPal was founded in 1998. You can make the payments for services, goods, online donations etc. PayPal is very fast, safe, secure,...

CakePHP with CakeBake

Create a small CakePHP Application using CakeBake

CakePHP comes with a Bake console which can create CakePHP’s basic structure using database within few minutes of time. It’s not just the skeleton of classes but it can create fully functional structure of CRUD functionality with in few minutes....

CakePHP using Composer

Install CakePHP 3.x using Composer

Well in my previous articles I have explained how to install CakePHP 3.x using source files from git which requires to download files of CakePHP and uploading them to local server which requires lots of efforts in moving files from...

Username Regular Expression

Username Regular Expression

Most of the time while working on projects in software/web/mobile development we have to deal with the validations while filling forms and if we are allowing users to fill in their information then it is must that the user should...

Integer and decimal number regex

Integer & Decimal Number Regular Expressions

/(?:\d*\.)?\d+/g OR /(?:\d*\.?\d+)/g In the above expression we are having various different symbols and I am sure that you all are getting confused with this scary regular expression. But no need to get confused here because it’s the normal expression...

Regular Expressions regex

Introduction to Regular Expressions

Well, you are here because you are interested in learning Regular Expressions and this article will teach you what all you need to write time-saver regular expressions. If you don’t know anything about regular expressions then also this article will...