Apr 6

Need to lift my board up a little more so i wouldn’t catch an edge :(

Dec 29

I looked for this script forever and I thought I’d share it with you. This script matches all the letters and numbers in a string an returns them back to you.
$string = “The quick brown fox jumped over the lazy dog!”;
$new_string = ereg_replace(“[^A-Za-z0-9]“, “-”, $string);
echo $new_string

Will return this :
The-quick-brown-fox-jumped-over-the-lazy-dog-

Jun 5

http://www.eqmon.com/sample/

This script was probably my most advanced script written. I use a combination of jquery, mysql, and php to generate a report based on the database. I also use php functions to generate the search form. I’ve been trying these days to use databases more to generate code than html and it seems to not only save me time but allow me to easily manipulate the data.

Bill

Apr 10

I recently had to write a script for my baseball league that then created standings ordered by PTS as I looked for something off the shelf to work for me but nothing seem to fit my needs. I also imagine that this could be easily changed for basketball, baseball or hockey. I will also add a sort field using jquery as its just in testing as we speak.

I will post the link to the standings script as soon as I post it on my site.

http://www.comoxvalleyslopitch.com/index-standings.php

« Previous Entries