Tuesday, March 23, 2010
Puttanna Kanagal (1933-1985)
Puttanna Kanagal's Directional Movies
Belli Moda (1966) (Silver Cloud)
Mallammana Pavaada (1969) (Mallamma's Magic)
Kappu Bilupu (1969) (Black and White)
Gejje Pooje (1969) (Mock Marriage)
Karulina Kare (1970) (The Voice of Affection)
Sakshatkara (1971) (The Realisation)
Sharapanjara (1971) (Cage of Arrows)
Nagara Haavu (1972) (The Cobra)
Edakallu Guddada Mele (1973) (On the Edakallu Hillock)
Upasane (1974) (The Devotion) starring Aarathi, Seetaram.
Katha Sangama (1975) (Collection of Stories)
Shubhamangala (1975) (Happy Ending)
Bili Hendthi (1975) (White Wife)
Phalithamsha (1976) (The Result)
College Ranga (Kaaleju ranga) (1976) (The College Stage)
Paduvaaralli Pandavaru (1978) (Pandavas of Paduvarahalli)
Dharmasere (1979) (The Religious Bind)
Ranganayaki (1981) (The Heroine of the Stage)
Maanasa Sarovara (1982)
Dharani Mandala Madhyadolage (1983) (At the Centre of Earth)
Amrutha Ghalige (1984) (The Auspicious Moment)
Runamukthalu (1984) (Devoid of Debt)
Masanada Hoovu (1984)
Saavira Mettilu (2006) (Thousand Steps)
Friday, March 12, 2010
Adding dates function in Php and Zend
in zend and php i wrote one small function which is used for adding days,months and year to a date and Format is YYY-MM-dd
Zend
$date = new Zend_Date();
$disbursedDate1='2010-03-11';
$date->set($disbursedDate1,Zend_Date::DATES);
$disbursedDate1=$date->toString("YYY-MM-dd");
$date->set($disbursedDate1,Zend_Date::DATES);
$disbursedDate1=$date->toString("YYY-MM-dd");
$cd = $this->add_dateAction($disbursedDate1,0,1,0);
echo $cd;
Php
$disbursedDate1='2010-03-11';
$cd = $this->add_dateAction($disbursedDate1,0,1,0);
echo $cd;
Function
function add_dateAction($givendate,$day=0,$mth=0,$yr=0)
{
$cd = strtotime($givendate);
$newdate = date('Y-m-d', mktime(date('h',$cd),
date('i',$cd), date('s',$cd), date('m',$cd)+$mth,
date('d',$cd)+$day, date('Y',$cd)+$yr));
return $newdate;
}
Note:- in zend formate is changed so i used this function to over that prob
in Zend default formate is YYYY-DD-MM ,but we can change what every formate we want by Zend_Local
Zend
$date = new Zend_Date();
$disbursedDate1='2010-03-11';
$date->set($disbursedDate1,Zend_Date::DATES);
$disbursedDate1=$date->toString("YYY-MM-dd");
$date->set($disbursedDate1,Zend_Date::DATES);
$disbursedDate1=$date->toString("YYY-MM-dd");
$cd = $this->add_dateAction($disbursedDate1,0,1,0);
echo $cd;
Php
$disbursedDate1='2010-03-11';
$cd = $this->add_dateAction($disbursedDate1,0,1,0);
echo $cd;
Function
function add_dateAction($givendate,$day=0,$mth=0,$yr=0)
{
$cd = strtotime($givendate);
$newdate = date('Y-m-d', mktime(date('h',$cd),
date('i',$cd), date('s',$cd), date('m',$cd)+$mth,
date('d',$cd)+$day, date('Y',$cd)+$yr));
return $newdate;
}
Note:- in zend formate is changed so i used this function to over that prob
in Zend default formate is YYYY-DD-MM ,but we can change what every formate we want by Zend_Local
Subscribe to:
Posts (Atom)