Test HTTP Requests Tools Blog PHP Quiz API Log In With Github
Test HTTP Requests Tools Blog PHP Quiz API Log In With Github
We have updated the website and our policies to make sure your privacy rights and security are respected.
Click here to learn more about the way our website handles your data.

Remove this message.

Page not found.

I am sorry but this article doesn't exist. Click here to see all articles from the blog.

Web Apps for Developers and Webmasters

Sitemap Generator will crawl your website pages and generate an XML Sitemap from your internal links. It is good fit for submitting to Google Webmaster Tools. The number of URLs that can be fetched is (theoretically) unlimited.

Generate It!

** tERMINAL ** is a web application that interprets your instructions through a command line interface simulator. It will give you a taste of the things you can achieve as a web developer.

Give It a Try!

Hash, Encode And Decode Strings Using Any Known Technique. Convert your hashed string into it's plain text counterpart. Quickly encode/decode strings online.

Unhash!

"Simple HTTP Requests" is a tool that simplifies API testing. It sends GET or POST HTTP requests to a specified API end-point and saves responses to allow easy sharing and review.

Start Testing!

Latest Programming Tutorials

PHP - A primer on the Basic Authorization Header

April 2, 2019
markus-voetter-525896-unsplash
This tutorial will discuss about the http basic authorization header and its many faults and unforeseen traps in conjunction with PHP code....
Read More...

3 solutions for sorting multidimensional arrays by child keys or values in PHP

January 19, 2019
sorted lego pieces
One of the tasks that less experienced programmers find really difficult is to sort multidimensional arrays by one of the values in the child arrays. In today's tutorial I'm going to show you 3 ways of achieving that - you decide which ones seems easier for you and provides the best performance....
Read More...

Sync Audio with text using JavaScript

March 12, 2018
sound-waves
A client of mine wanted a way to highlight text on a page as audio was playing, thus helping children that had difficulties reading along. In this tutorial I will show you the solution I implemented. The code makes use of the timeupdate event and it uses the data from the JSON to sync audio with the text. ...
Read More...

is_null vs empty vs isset... One lesson all PHP coders should learn

July 12, 2014
empty tin can
PHP has a lot of ways of dealing with variable checking. There are functions that check each type like is_array, is_object or is_bool and there are functions that can be used to check multiple conditions at once. Today we will be dealing with the differences between is_null(), empty() and isset(). First let's explain what each one does....
Read More...