MSSQL IF (multiple fields > one value)
In MySQL I use IF(value,then,else) quite often, but in a new project I am doing I need to do the…
A bunch of ramblings about PHP programming, JQuery, MySQL and other 'stuff'
In MySQL I use IF(value,then,else) quite often, but in a new project I am doing I need to do the…
So, once you’re all set up and running, you may want to give users access from the outside world. This…
If you are trying to ignore a file and git is mucking you about, it may be because the file…
Had some CSS that worked in Chrome, but not Firefox or Opera. Firebug reported this: Turns…
Using Apache you can stop directory listing with this line in your .htaccess Options -Indexes Basically it says stop access…
Before you say it, I know there are better ways of streamlining your CSS based on the browser, but this…
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…