School Assignment? Project Due Tomorrow? Chat LIVE With A Programming Expert!
Welcome to Dream.In.Code
Become an Expert!

Join 306,870 Programmers for FREE! Get instant access to thousands of experts, tutorials, code snippets, and more! There are 1,698 people online right now. Registration is fast and FREE... Join Now!



's Contributions
Below are the tutorials, code snippets, and resources has submitted to dream.in.code. For more information on Kudos and contributing to dream.in.code visit: http://home.dreamincode.net/?p=about#kudos.
Tutorials
Code Snippets
Submitted: May 18, 2007        Views: 1904
The response object has a built in maximum on memory usage. If you want to push files in the traditional way, that is read it in and then echo it out, you will run into this limit. This sniplet uses chunks to get around this problem. edit 10/09/09: fixed a bug!
Submitted: September 4, 2007        Views: 1012
Say you have a list of images and want to be able to select one. The radio buttons are small, so it would be handy to click on the image itself and with that click select the right radiobutton.
Submitted: January 20, 2009        Views: 127
postgres does not generate GUIDs but can store them. You can generate them yourself.
Submitted: November 30, 2006        Views: 689
Submitted: March 29, 2007        Views: 726
In complex queries involving counts it can happen that you get no resultset where you would want a 0. This is how to do it.