recent posts
Chained Select Boxes using PHP / MySQL / AJAX...
Posted by Rob on 07 30th, 2010
UPDATE
Version 2 is now available. I’ve had a lot of people ask for this and now its ready. 2 and 3 tier chained dropdowns. 3 tier files included in the download.
Im currently working on a chained dropdown generator that will give you the ability...
Ajax with jQuery in 3 easy steps...
Posted by Rob on 05 7th, 2010
I figured I would make this small tutorial for all of you curious about it. Pulling data from a database with ajax should not be feared. It is actually very simple. The majority of the work is in the server side part of the ajax. So for this tutorial...
Ajax Refresh...
Posted by Rob on 11 10th, 2009
Div Refreshing with Ajax.
function createRequestObject() {
var req;
if(window.XMLHttpRequest){
// Firefox, Safari, Opera...
req = new XMLHttpRequest();
} else if(window.ActiveXObject) {
// Internet Explorer 5+
...
jQuery: Filter Select box with php and mysql...
Posted by Rob on 08 9th, 2009
Lets filter a select box with jQuery, Sack, PHP and MySQL…..
You may or may not need this, but it could come in handy at one point in time. So lets start..
I will show you the basics here, you may download the source at the bottom of the page.
View...