Mixed Media and Web Development.

jQuery: Filter Select box with php and m...
jQuery: Filter Select box with php and mysql
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 the DEMO index.html include these into the head...
Chained Select Boxes using PHP / MySQL /...
Chained Select Boxes using PHP / MySQL / AJAX
So, I got sick of using multiple singular select boxes. For this latest project I ended up with a table containing a category and text. About 500 entries. I used the AJAX from http://dhtmlgoodies.com Source Files: DOWNLOAD Check out the DEMO The MySQL is simple, just an id, category and text field. There...
5 Minute Flex Data Grid...
5 Minute Flex Data Grid
So you want a quick solution for a data grid with inline edit, add, delete, search and sorting? I’ve got just the answer for you. …..Adobe Flex. Finished Data Grid: Demo So lets start, The data used for the grid will be pulled from a MySQL database. If you don’t have one ready, use...
PHP Percentage Bar...
PHP Percentage Bar
Source Files: DOWNLOAD View working examples here: DEMO MySQL Table, used for example. CREATE TABLE IF NOT EXISTS `percent` ( `per_id` int(11) NOT NULL auto_increment, `per_num` varchar(255) NOT NULL, PRIMARY KEY (`per_id`) ) ENGINE=InnoDB; 1. Lets start with the MySQL Connection, I named this file...