CodeIgniter sample .htaccess
RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule .* index.php/$0 [PT,L]
A bunch of ramblings about PHP programming, JQuery, MySQL and other 'stuff'
RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule .* index.php/$0 [PT,L]
I found that a script I was running was calling some linux functions using exec() but they weren’t always successful…
I recently needed to update a whole bunch of records using an IN() on the target table: UPDATE table1 SET…
My Linux box is secure, so why do I need to remember the extremely difficult to remember password for one…
I’ve seen a few methods of this using over-elaborate JavaScript, when its really not necessary. All you need to do…
So you got a nice 64GB USB stick, and can’t format it NTFS but want to transfer huge files on…
Finding files is a little different to MS DOS! find <startlocation> <type> <filename> <exec> The exec is a simple way…
If you need to use :contains() as a selector but need a case insensitive one, you need to extend jQuery…
If you ever find that you are creating a folder with PHP, and its immediately not writeable by Apache, then…
Had a routing issue the other day, and I was remotely trying to forward a port to a device. I…