HTML button that acts like a link

If you are making some web application and you need to redirect user to another page, you can create a button that will act link a link. Regular <a href="#"> tag may not be suitable in some cases, for example, when you have complex logic or unusual content on a form. This article contains information …

How to disable text selection highlighting in CSS

In many cases, web browsers allow the user to select text elements on a page. However, this may not be the desired option in specific situations. You may want to avoid such behavior when adding buttons, links or any other non-standard elements to your HTML code. To solve such an issue, you may add the …

Simple PHP contact form

In this article, you will learn on how to build simple contact form in native PHP language without adding any other frameworks or libraries. This code may be useful when you want to build custom site or web application and your preference is to avoid any complex 3rd party tools. You need to start with …

How to change color of a placeholder in CSS

This is a very popular case in web development. Sometimes, when making a HTML form, you need to change color of a placeholder text to the desired custom value. It can be done very easily, but still, you have to know some aspects to make it look good in different browsers, especially in old. We …

What is PHP?

Today, we will describe what the PHP programming language is. You probably have heard a lot about it, and even wrote some basic scripts. But if you'd like to learn history or language concepts, then reading this article is the right choice to do. The first version of this language was released many years ago, …