Getting into Angular and React
This is something I’ve been meaning to do for some time. Some stuff at work has required me to fixed bugs in an Angular project, so I’m researching and getting into that. At the same time, personal projects seem to … Continue reading
Correctly POSTing boolean values in jQuery
When I’m building Javascript/jQuery based webapps, my go-to method of performing AJAX requests is via jQuery .post() using JSON. My code normally looks something like this… var postUrl = ‘/someurl.php’; var postData = {‘id’: 123, ‘data’: ‘xyz’, ‘bool’: true}; // … Continue reading
Time Zone Conversion Using PHP DateTime Class
Following on from my post last month about problems with PEAR daylight saving, here’s a quick example of using the PHP DateTime Class which was introduced recently (PHP 5.2). Convert from UTC to Europe/London local time: $time_object = new DateTime(‘2011-04-19 … Continue reading
Move your website properly using htaccess
Sometimes you need to move an entire website to a new domain name. There’s lots of ways to do this, but if you’re not careful you might end up losing or confusing visitors (and google). Here’s a quick tutorial to … Continue reading