WELCOME TO

Falkens Maze Development

Welcome to my website where I share my development journey. It all started in 1996 when I built a basic HTML website for the company that I worked for. Although I briefly left the computer industry, I continued to build websites as a hobby. One day, I wanted to create a login system for a web page without using file-based software, so I searched for alternatives to ASP.Net and found a LAMP book. Using my qBasic knowledge from the 80s, I quickly learned PHP for the server-side scripting and MySQL as the database backend. My first real PHP program was a Jeopardy game for a class project. Over time, I transitioned from building website templates to creating them with CMS's that allowed clients to manage their own content without coding knowledge. After finding WordPress and its community, I made the choice to use this CMS in the long run. I take pleasure in developing plugins and customizing websites to meet my clients' needs. Browse my website to discover code snippets and other resources that have helped me become a better coder.

Falkens Maze Blog

May 16, 2023
10 Essential Tools for Every Developer's Toolkit

In a rapidly evolving digital world, the field of software development constantly demands new tools and practices. Developers need a robust toolkit that can help them build, design, and test their applications effectively. In this article, we will explore the 10 essential tools that should be part of every developer's toolkit, irrespective of the language […]

Read More
May 12, 2023
Why PHP Won't Die: The Enduring Legacy of a Web Development Powerhouse

Introduction In the ever-evolving world of web development, new programming languages and frameworks emerge regularly, promising to revolutionize the way we build websites and applications. Amidst this dynamic landscape, PHP continues to hold its ground, defying skeptics and demonstrating its resilience. Despite the emergence of newer languages and the rise of JavaScript frameworks, PHP remains […]

Read More
May 4, 2023
WordPress Development: Building Websites with the World's Most Popular CMS

WordPress is the most popular content management system (CMS) in the world, powering over 40% of all websites on the internet. As an open-source platform, it allows developers to customize websites to their clients' exact specifications, making it an attractive choice for businesses of all sizes. WordPress development involves building websites using WordPress as the […]

Read More

Code Snippets

Media Library Mime Types to WordPress

Code Snippet | WordPress | Theme Code

This is the type of code that needs to be added to your functions.php file in order to allow you to upload files into your media library. function custom_myme_types($mime_types){ //add a new array item to this array to allow uploading of that file type. $new_mime_types = array( 'ogg' => 'audio/ogg', 'ogv' => 'video/ogg', 'webm' => […]

Read More
PHP CURL Sample

PHP

function send_post_request($url, $data = array()) { // Initialize cURL session $curl = curl_init(); // Set the URL to send the POST request to curl_setopt($curl, CURLOPT_URL, $url); // Set the request method to POST curl_setopt($curl, CURLOPT_POST, true); // Set the POST data if (!empty($data)) { curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($data)); } // Set cURL options to include response […]

Read More
linkedin facebook pinterest youtube rss twitter instagram facebook-blank rss-blank linkedin-blank pinterest youtube twitter instagram