Thursday, January 22, 2009

Get A-Z Alphabet in PHP

for ($i=65; $i<=90; $i++) 
{
echo chr($i); 
}

Friday, January 2, 2009

Remove Extra line space after </form>

Apply this css style to the page,
form { margin: 0; padding: 0; }