This is a simple screenshot server running over http. You append a url (a urlencoded url) to the server and it returns a PNG image
htmlentities() versus htmlspecialchars() – What’s Better For Emitting HTML?
Both htmlentities and htmlspecialchars work the same way in that they are used to emit a string of user input that may contain raw HTML
Ignoring Insert Errors
In the MySQL sql language, the insert modifier ignore can sometimes come in handy if you’re wanting to run the query but not worry about
Best Whois Parser
I went through a bunch of different whois parsers trying to find the most accurate. Many of them weren’t able to correctly parse the new
Parsing Date/Time From String
This below would parse the string, in the specified format into a valid date time object. STR_TO_DATE only works when the date mask is valid

How to Backup and Restore with mysqldump
Backing up and restoring a MySQL or MariaDB database is super easy. I’ve listed out a few different ways you can do it. Example MariaDB/MySQL

All About Embedded Image Data In Image Tag
The benefit of using base64 encoded images embedded in your img tags is that the web browser doesn’t have to load an external resource. This

DOMDocument PHP Tutorial
DOMDocument function is used to parse and manipulate HTML and XML documents in PHP. Below are a few examples on how to use the DOMDocument
Several Ways to Run Queries from Bash
In some of these examples, particularly the remote server I’ve included usernames and passwords, but you might not need it locally, depending on your mysql

How to Diff Two Strings and Show the Difference in HTML
This php class will take two strings and return a html diff of them with the <ins> and <del> html tags representing what was deleted