Create a PHP Login Form

A user login and registration system is super helpful when we want to store information about the users of our website. This applies to everything from educational websites which might store course progress and marks to e-commerce websites which will store information about customers’ past purchases. In this tutorial, I’ll teach you how to create… Continue reading Create a PHP Login Form

How to Implement Email Verification for New Members

Have you ever created an account with a website and been required to check your email and click a verification link sent by the company in order to activate it? Doing so highly reduces the number of spam accounts. In this lesson, we’ll learn how to do this very thing! Looking for a Shortcut? This… Continue reading How to Implement Email Verification for New Members

What To Know to Create a Better UX Blockchain Design

Blockchain is an emerging technology that not many people are still familiar with. While it is trying to slowly integrate itself into our daily lives, it’s still not fully utilized since not many people see its use. Moreover, not many people specialize in designing solely for blockchain or have experience designing one. If you’re planning… Continue reading What To Know to Create a Better UX Blockchain Design

Debugging with Truffle CLI — SitePoint

Debuggers have been crucial software development tools for over thirty years. A modern debugger enables us to: run the code line-by-line set breakpoints in the code put conditions on the breakpoints evaluate expressions during runtime. Most modern debuggers are also highly integrated into development environments of languages they are serving. They enable setting breakpoints by… Continue reading Debugging with Truffle CLI — SitePoint

Database and API ― Scotch

To get paid for goods and services provided, companies/freelancers need to send invoices to their customers informing them of the services that they will be charged for. Back then, people had paper invoices which they gave to the customers when they contact them for their services. Right now, with the advent and advancement of technology,… Continue reading Database and API ― Scotch

Code a Single-Page Sliding Website Layout With Fixed Navigation

When constructing a simple webpage, it can often make sense to fit the content into a single layout rather than multiple pages. These single-page websites are beneficial when you have a small project or portfolio which needs some online presence. If you split up content into neat sections, then visitors might use a small sliding… Continue reading Code a Single-Page Sliding Website Layout With Fixed Navigation

Hash Passwords With PHP 5.5

Almost every PHP developer would have to build an application that relies on a user login. This will involve the user of the website having a Username and Password which is stored in the database so they can login into your website. As passwords are stored in the database it is important that you hash these… Continue reading Hash Passwords With PHP 5.5