Below is an easy to use array of the default full-text stopwords in MySQL taken from MySQL.com.
Below is an easy to use array of the default full-text stopwords in MySQL taken from MySQL.com.
Here’s the follow-up article on how to easily get file sizes nicely formated. Below is a quick function that will display the file size in KB, MB, or GB all easily accessed through a function. function formatbytes($file, $type) { switch($type){ case “KB”: $filesize = filesize($file) * .0009765625; // bytes to KB break; case “MB”: $filesize [...]
Below is a quick PHP function that allows you to find the time between two dates. The dates must be in seconds from Unix Epoch. if(!function_exists(timeBetween)) { function timeBetween($start_date,$end_date) { $diff = $end_date-$start_date; $seconds = 0; $hours = 0; $minutes = 0; if($diff % 86400 0) { $rest = ($diff % 86400); $days = ($diff [...]
15 Feb, 2008
Posted by: john In: php|programing
Almost a year ago I wrote a quick article on how you can strip off characters using PHP’s built in function substr. But after reading it again, even I was not clear how it worked so how would it ever help anyone. First, if you only want to pull on character from a string, it’s [...]
You now can look in almost any website or web application where the background colors are alternating. This is a great (and easy) way to improve the user interface for the end users. Here’s a quick explanation of what’s going on in the demo file below: First we set the alternating backgrounds we want to [...]
10 Jan, 2008
Posted by: john In: javascript|php
A friend of mine recently requested a quick image rotator script that was not using Flash, but would use Javascript. Below is a script that will read through a single directory and look for any image file (jpg, gif, or png) and rotate it. Update: new updated version which allows you to show only the [...]
25 Apr, 2007
Posted by: john In: php|programing
Here’s a quick snip of code to help you easily manage your files by finding out the time the file was created or modified and also the time of the file. $file = ‘image.jpg’; // FILE TIME $filetime = filemtime($file); // displays in Seconds since the Unix Epoch echo date(“M j, Y”, $filetime); // would [...]
Here’s a quick way to strip off characters from a string using PHP’s function substr. <? $var = ’05 Delete’; $var = substr($var,0,2); echo($var); // returns “05″ ?> If you wanted to strip off the characters from the end of a string, just change the “2″ to “-2″ and it will strip off the last [...]
Just another quick way to automate the simple process of creating HTML selects with a function. This small function with also remember which value was selected by checking it against the $_POST value and adding a selected=”SELECTED” to that option. 2 dimentional array: $people_array = array( ’1′ => ‘Bob’, ’2′ => ‘James’, ’3′ => ‘Jessi’, [...]
21 Mar, 2007
Posted by: john In: music|php|programing
Being a very big music buff, I love being able to see what my music habits are. I’m currently using the most up-to-date version of Winamp, which does a good job of keep a history of what I listen to, but I wanted this info on the web for the world to see. Fortunatly, Last.fm [...]