We previously wrote about how you can pre-populate input values in Gravity Forms. The comments for that post revealed something obvious that we missed – the technique does not work for checkbox fields or any other fields that have pre-defined choices, such as radio buttons and dropdowns. For this blog post, we are focusing on […]
Unit Testing With PHPUnit
Merging code, especially when authored by multiple people, can lend itself to a lot of risk. As a code base grows, there may be an underlying feeling that more bugs exist than we can find by digging through our code editor or our application’s various screens. Unit testing is a process that lets us test […]
Why PHP Versions Are So Important
Recently, I’ve been putting a lot of time and effort into leveling up my PHP skills. When my last round of leveling up began, I knew a good bit of basic-to-advanced PHP. The thing was, I had come to the realization that I simply felt comfortable with my level of proficiency. Once I realized this, […]
Autoloading Classes In PHP
Using the autoloading feature of PHP gives us cleaner code and less worry, not to mention it encourages better organization of our files.