Monday 22 June 2015

Youth Driven - India Against Corruption Moment

I am a girl who is passionate to meet new people and interact with them from my child hood.
I have participated in various events like environment issues (ExNoRa), Improving skills,helping kids who are in orphanage spending my weak end with them teaching and learning.  Always have some thing to do for society and people also get inspired by those people who are better than me, even been a part of India Against Corruption (IAC), currently happy that AAP had proved that a normal man can come to the power.

I do remember on the month of April 2011, when whole Indian youth supporting the moment India Against Corruption Moment, Leading by Anna Hazare.
Me and my brother were discussing on how can we start participating in this moment. All that we did is Googled it, surprisingly we saw NDTV Debate happening in AVM studio. We were called to attend. They were looking for more student crowd to know their opinion. The debate with DMA , and ADMK leaders.  We were in great power of youth and were in collage. Just used to do what we feel correct.

Me and my brother supported this moment, but calling out our friends to join such moments very difficult, because we cant force any one here. Every person have their own opinion on things.
I am happy that our parents have allowed to support the moment and they were always there with us.

I am proved that my father dint show any differentiation between me and my brother, we are three and all are given equal freedom to participate or go the events to explore our self. He was proved that we have the paint again our country and could not tolerate on something happening wrong. He never told this by allowing us to such events were really great.

All those were very  good experience, we were in Chennai and having the big moment is very difficult. Families are conservative and people are not really open minded as in other place to accept the truth.



There was regular meetings, people from different area used to join the moment. Rich, power , upper class and middle class. Well all has love well i was still unknown about different types of people. Who have there own agenda to join this events. But happy that i was one of the member at initial days and could be noticed by many of the other people.

There was different awareness event that the volunteer group planed were meeting school people
addressing them about corruption, From schools to collages, from MNC's to NGO and to the middle class people. I was there explaining in trains to the public and at parks about this moment, few were open minded and accepted it. But few were against it.

All this approach really helped me to understand people.  Well it is always very difficult to find true people among the crowd.

Initially when to moment were started by few of them were could not stay till the end, and other volunteer who joined after few years were leading the moment. Well what i understand was to be a public phase in important, but to be at that point i need to be much more stronger. So i though to come out from the moment and concentrate on my Currier. Before addressing the public i need to be self train myself and need to prove myself.

One thing i understand to be a leader you should be self motivated and don't get drive by the people, but People need to be dived by the Leader.

 I am on search of my passion and dream .. to make the world better place to live with my design skills.


Sunday 12 August 2012

How to delete the COOKIE after Log Out of the section.

                         /*****************Create HOME page************************/

 <html>
 <title>  Web 7Lessons</title>
<body>
<div class='top_margin' > // top margin
<ul class="webfix_panal_1">
<li class="li" name="home"><a href="#">HOME</a></li>
<li class="li" name="aboutus"><a href="#">ABOUT US</a></li>
<li class="li" name="services"><a href="#">SERVICES</a></li>
<li class="li" name="products"><a href="#">PRODUCTS</a></li>
<li class="li" name="contactus"><a href="#">CONTACT US</a></li>
</ul>
<div>



                    /***************Create a Cookie for your file action *****************/


var name='cookie_name';
if(readCookie(name)=='1')
{
SetCookie("webfix_panal_1",1);
tabsDisplay(empID,'aboutus');
}
else if(readCookie(name)=='2')
{
SetCookie("webfix_panal_1",2);
tabsDisplay(empID,'services');
}
else if(readCookie(name)=='3')
{
SetCookie("webfix_panal_1",3);
tabsDisplay(empID,'products');
}
else if(readCookie(name)=='4')
{
SetCookie("webfix_panal_1",4);
tabsDisplay(empID,'contactus');
} else if(readCookie(name)=='0')
{
SetCookie("webfix_panal_1",0);
tabsDisplay(empID,'home');
}

</body>
</html>






                                /***************** CSS ****************/
top_margin.{
text_align:center;
padding-top:10px;
height:36px;
padding-left:10px;
}
li.{
font-size:18px;
margin-left:30px;
text-align:center;
}


                                    /****************** LogoutAction file ****************/

<?php

Secssion_start();
class Logout Action extends DBAction
{
function getDefaultview(&$controller,&$request,&$user)

{

if(isset($_COOKIE['Cookie_name']))

{
  setcookie("cookie_name",0);
 }

}



NOTE:


When user will Log in to the site.

> The actions that they do will be there till they log out of the site  due to SetCookie

After Log out 

>As the user will Log in again  they will not find previous values which was set .




With Regards
HIMA.J
web7lessons.com
jhimamurthy@gmail.com