|
(PHP, MySQL, Javascript, MVC, Zend Framework, AJAX, jQuery) |
|---|
|
Visual jQuery updated!
For those who do not know, Visual jQuery has been updated! |
|
Using Yahoo’s API to convert currencies with PHP
I have been looking around Yahoo Developer Network for this but found nothing relating to using the Currency Converter API. You can make something similar to convert any currency to another currency using the Yahoo! database! Here is what I came up with: < ?php $from = ‘USD’; //US Dollar $to = ‘PHP’; //to Philippine Peso $url = [...] |
|
Typechart: Fonts for web + CSS
I got this from designtrance’s twit. TYPECHART lets you flip through, preview and compare web typography while retrieving the CSS. |
|
Jquery: Multi Column Select Box
This quick tutorial assumes that you already have jquery.js setup. Here are the instructions: Create a div with a table name the identify the div with a class “ex. datatable” <table cellspacing="0" width="100%"> <tr> <td>1234</td><td>Apple</td> </tr> <tr> <td>1111</td><td>Cat</td> </tr> <tr> <td>5555</td><td>Dog</td> </tr> </table> Include of course jquery.js and jquery.multicolselect.js Put this as javascript $(‘.datatable’).multicolselect({ buttonImage:"selectbutton.gif", selectedID:"test2", eqVisible:1, eqHidden:0 }); Note you need the “selectbutton.gif”. You can get a screenshot of the original [...] |
|
jQuery: The Ultimate Handbook.
I found this in News.YCombinator: http://effectize.com/jquery-developer-guide Very useful. I am a big fan of jQuery and I believe it is the best thing that has happened to Javascript since — um, chocolate. |
|
Code Igniter: Resize image and save to database; Generate thumbnails
Probably my first Code Igniter tutorial. This one shows you how you can save an image to a database. But before saving that image to a blob field, the image is re-sized first. This behavior is similar to Friendster’s image upload. The Model < ?php class Photos_model extends Model { private $_table = ‘photos’; public function __construct() [...] |
|
Raphaël - jQuery but for vector graphics on the web?
I had to post this. What is it? Raphaël is a small JavaScript library that should simplify your work with vector graphics on the web. In case you want to create your own specific chart or image crop-n-rotate widget, you can simply achieve it with this library. Raphaël uses SVG and VML as a base for graphics creation. [...] |
|
10 important MySQL variables that you should keep an eye on
A few months ago, I would have never read these kinds of posts. But after doing a project that had a huge MySQL database, I am glad that I have found this post. Regardless of whether you’re running a single MySQL server or a cluster of multiple servers, one thing you are always interested in is [...] |
|
Available for download: Zend Framework 1.6 Release Candidate
A *new* version of Zend Framework is now available. It should be safe to use for personal projects. It’s good to see the Figlet available - I think DaSPiDs from #zftalk made this :P. Other stuff like the CLI and Captcha stuff are great additions. Click here for the article. |
|
jQuery: How to handle radio buttons
Here is a quick tutorial on how to handle radion buttons using jQuery. < input type="radio" name="empType" value="regular" /> Regular < input type="radio" name="empType" value="temporary" /> Temporary Then the jQuery code: (assuming that you have already included the JS file in the header…) $("input[@name='empType']").change( function() { [...] |
|
Kanye West pissed off. Delay in Bonnaroo. Pearl Jam ended 1 hour late.
Hey, I love Pearl Jam. If they will have a concert here, I will kill for the tickets. Click here for Kanye’s blog. |
|
How to get Cross Browser Compatibility Every Time
Yet another CSS post. The second one for today. Cross-browser compatibility is one of the most time consuming tasks for any web designer. We’ve seen many different articles over the net describing common problems and fixes. I’ve collated all the information I could find to create some coding conventions for ensuring that your site will work [...] |
|
Perfect CSS Layouts. No CSS hacks. SEO friendly. No Images. No JavaScript. Cross-browser & iPhone compatible.
I had to post this. No CSS hacks The CSS used for this layout is 100% valid and hack free. To overcome Internet Explorer’s broken box model, no horizontal padding or margins are used. Instead, this design uses percentage widths and clever relative positioning. SEO friendly 2-1-3 column ordering The higher up content is in your page code, the [...] |
|
Importing from Huge CSV Files to MySQL Database and more…
The scenario: I am given a huge CSV File dumped thru FTP from some big JDE-ish system everyday. The CSV File is about 15MB or so. The file has around 60,000 lines in it. What I needed to do is to update a “main” transaction table. Which means I have to lookup each line [...] |
|
Visor: A Quake-like / Counterstrike-like console for the Mac
This is probably one of the coolest applications/plugin I have installed on my Mac. It brings out a Quake-like console that comes down from the top of your screen. Talking about convenience! I never liked the Widget Term - takes forever to load. And the Terminal.app just adds more clutter to my screen real estate. You [...] |
ZF Home Page
Code Browser
Wiki Dashboard