Managing tags within a string with PHP
By tags I mean hashtags or “describers” often only just a single word but sometimes more. Handling them in PHP is different to most other variables as they’re often singular…
PHP backend web language
By tags I mean hashtags or “describers” often only just a single word but sometimes more. Handling them in PHP is different to most other variables as they’re often singular…
If you develop themes, plugins, websites for paying customers there is obviously a strong notion that you don’t have malicious intent, that your code does what it’s described as doing…
PHP trim() removes whitespace from the beginning and end of a string. It does not remove spaces during a string. The usage of trim() is very simple. This example shows…
Here is how to use an open API to display the AFL Ladder with PHP. The concept is simple; Call the ladder API, start a table and then in a…
Password hashing is to prevent easy password exploiting by not storing password in plaintext. Instead you store a hash and verify this against the login attempt. Imagine if a database…
Lets say you have a group of photos from a location, shoot or event. They will be named depending on the camera something like DC001984 or IMG_02891 something like that…
Exif stands for Exchangable Image Format, it is the data and information that gets attached to digital images. From location, aperture, IOS, camera, lens, date time, image size + format…
I have touched on PHP Simple HTML DOM parser before, its useful to grab data from websites where no API is available. It’s actually one of the many methods.. such…
Here is how to easily and successfully upgrade PHP version in XAMPP for windows. It can be done with any XAMPP PHP version of your choice. I upgraded to PHP…
Storing values from a json output into a database is a common occurence, but storing the whole json call into a column not so much. Traditionally it is more efficient…