PHP Articles

You will find articles covering all areas of PHP, including application architecture, functions, databases, tools, the latest PHP news, and insightful guides covering setup & installation and site operation.

Articles Sub-Categories: Application Architecture, Databases, News, Pear, PHP Functions, Setup & Installation, Site Operation, Tools, Tricks & Hacks.

Results via Envato Market

Two-factor authentication is a type of authentication that “provides unambiguous identification of users by means of the combination of two different components.” These authentication components could be something that the user knows, something that the user possesses or something that is inseparable from the user. In this tutorial, you will learn how to implement two-factor authentication in PHP.

As the usage of Bitcoin as a payment method is growing, many companies have started accepting payments in this virtual currency. More than 100,000 companies are currently accepting Bitcoin (some of them are large and well-known, such as Microsoft and Dell), making it the most popular virtual currency. Let’s see how it works and how to accept payments in Bitcoins in your Web application.

By PHP Builder Staff on March 2, 2012 Getting started with PHP is no walk in the park. It’s a challenge just like any other programming language. When I was starting with PHP in December of ’98, I spent nearly 25 hours just trying to get PHP to compile on…

By PHP Builder Staff on March 2, 2012 A lot of beginning developers don’t understand that the web is “Stateless”. That means that the web server forgets who you are as soon as it sends you a page. So if you’re logged in as John Doe and viewing your bank…

By PHP Builder Staff on March 2, 2012 OK, I needed to use arrays to create my graphing functions that I detailed in my article “HTML_Graphs” here on this site. Unfortunately, arrays are way different in PHP than in my native programming language, Java. In Java, you define an array…