Getting wkhtmltopdf working on Linux
I’ve had a few troubles getting this running, and thought I would document it here. First of all get the…
A bunch of ramblings about PHP programming, JQuery, MySQL and other 'stuff'
I’ve had a few troubles getting this running, and thought I would document it here. First of all get the…
Simple one. $(document).on('#element', 'keyup', function(event) { if (event.keyCode == 13) { event.preventDefault(); //do some other stuff } }); This doesn’t…
I recently wanted to add a Zend library to a project without adding the entire framework. I found that internally,…
So you want a little funky AJAX loader? Add this to your JS main core file…: $(document).ready(function() { //initiate an…
If you have a database of CDs, and artists, etc. Say you want to get a list of artists with…
IMAP To get imap support in PHP on your Mac, you need to get the php_imap module compiled for your…
If you have just set up a new Centos server andĀ foundĀ that the network isn’t functioning, and you have no IP…
find / -xdev -size +1000000 -exec ls -lh {} \; The above will list files greater than a gigabyte in…
If you are trying to add a ‘total’ or a report footer and its getting split over the penultimate and…
You cannot strip a certain list of tags with PHP’s strip_tags() function, you can only strip ‘all but’ tags. So…