jQuery Image Cropper with Uploader
by chadking
Please check the updated version here! Some time ago I posted the Dynamic jQuery Image Gallery with Uploader which uses the class.upload, uploadify and ad-gallery scripts. This time I want […]
+ moreThe Playground features web experiments, concepts, and layouts that push the boundaries of traditional design and showcase the latest in animation techniques.
by chadking
Please check the updated version here! Some time ago I posted the Dynamic jQuery Image Gallery with Uploader which uses the class.upload, uploadify and ad-gallery scripts. This time I want […]
+ moreby Manoela Ilic
Here is a list of 33 JavaScript table sorting scripts and their sources. Enjoy it! 1. jQuery tablesorter http://tablesorter.com/docs/
+ moreby Manoela Ilic
The API of Google has a lot of useful usage examples. This showcase demonstrates how we can use the Google AJAX Language API to build a live translator that allows […]
+ moreby Manoela Ilic
Here is a collection of free CAPTCHA scripts and services than you can easily integrate into your website using PHP or JavaScript: 1. PHP CAPTCHA Library for reCAPTCHA http://recaptcha.net/plugins/php
+ moreby chadking
Here’s an updated version of the PHP Login System. You can check the old version here. The following was added:
+ moreby chadking
Here’s a jQuery Image Gallery script with a multi file Uploader, that was implemented using three resources that I found on the web: uploadify ad-gallery class.upload.php click on the image […]
+ moreby cody
Here’s a list of 42 jQuery Navigation Techiques, Navigation plugins, and Tutorials built using jQuery: 1. How To Create A ‘Mootools Homepage’ Inspired Navigation Effect Using jQuery
+ moreby cody
Here’s a jQuery script for changing the stylesheet of an html page. The styles can be selected from the dropdown on top of the page. There are ten styles to […]
+ moreby cody
Here is a jQuery example for a captcha in a registration form. In order to pass the “Are you human” test, the user has to drag the numbers from 1 […]
+ moreby cody
A list of 42 jQuery image galleries, sliders, plugins and tutorials built using jQuery
+ moreby cody
This is a sliding menu plugin for jQuery which fires on mouseover and mouseout events.
+ moreby 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. This […]
+ moreby chadking
Update: There’s a new version of this Login Script. Here’s a PHP Login System, based on the one developed by jpmaster77: PHP Login System with Admin Features Focusing only on […]
+ moreby 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 […]
+ moreby 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 […]
+ moreby cody
Here’s a simple function that calculates the number of days between two dates. <?php //day’s seconds = 86400 function days_between($day_i,$month_i,$year_i,$day_f,$month_f,$year_f){ $days_in_between = (mktime(0,0,0,$month_f,$day_f,$year_f) – mktime(0,0,0,$month_i,$day_i,$year_i))/86400; return $days_in_between; } ?> //If […]
+ moreby chadking
The following is an example of using the transactional support in MySQL. Let’s assume we have two tables, USERTBL and EMAILTBL. Let’s consider the innodb engine, since it’s the most […]
+ moreby Manoela Ilic
Heres a list of actions you should do in order to get PHP + MySQL working with UTF-8: 1. Database: CREATE DATABASE db_name CHARACTER SET utf8 DEFAULT CHARACTER SET utf8 […]
+ more