jQuery Sliding Menu Plugin
by cody
This is a sliding menu plugin for jQuery which fires on mouseover and mouseout events....
The Playground features web experiments, concepts, and layouts that push the boundaries of traditional design and showcase the latest in animation techniques.
by cody
This is a sliding menu plugin for jQuery which fires on mouseover and mouseout events....
by chadking
The jQuery Style Slider allows you to change the style of certain html elements in real time and save the style setting to a MySQL database table using PHP....
by Manoela Ilic
Here is a list of some highly valueable and functioning iPhone programming tutorials (list is open): iPhone View Switching Tutorial iPhone Coding – Learning About UIWebViews by Creating a Web Browser iPhone Dev Sessions: Create a Navigation-Based Application Tutorial: JSON Over HTTP On The iPhone iPhone Programming Tutorial – Creating a ToDo List Using SQLite Part 4 iPhone Programming Tutorial {Part 7}: Adding Pictures into your table using Interface builder iPhone Tutorial for Creating a Splash Screen Send in your suggestions!...
by cody
Here's a simple way to execute the windows dir or the linux ls in PHP Windows: <?php $row = exec('dir',$output,$error); while(list(,$row) = each($output)){ echo $row, "<BR>n"; } if($error){ echo "Error...
by cody
Here's a simple function that calculates the number of days between two dates....
by chadking
The following is an example of using the transactional support in MySQL....
by Manoela Ilic
Heres a list of actions you should do in order to get PHP + MySQL working with UTF-8: 1....
by Manoela Ilic
Here is some very useful javascript for detecting the browser that is accessing a page: (more…)
by Manoela Ilic
Here is a simple PHP function that returns the exact age of a person given his/her birthdate: function age($month, $day, $year){ $y = gmstrftime("%Y"); $m = gmstrftime("%m"); $d = gmstrftime("%d");...