Skip to main content

फिलहाल गाने की लिरिक्स ! Lyrics of filhal song.!

  फिलहाल गाने की लिरिक्स। 

Lyrics of filhal song

ओ कुछ ऐसा कर कमाल
के तेरा हो जाऊँ
ओ कुछ ऐसा कर कमाल
के तेरा हो जाऊँ

मैं किसी और का हूँ फ़िलहाल
मैं किसी और का हूँ फ़िलहाल
के तेरा हो जाऊँ
मैं किसी और का हूँ फ़िलहाल
के तेरा हो जाऊँ

ऐ गल ते गलत ऐ
जो वी कर रेया जानी
और ऐ वी देख तेरे बिन
किंझ मर रेया जानी

ओ मरजांगे लै संभाल
ओ मरजांगे लै संभाल
के तेरा हो जाऊँ
मैं किसी और का हूँ फ़िलहाल
के तेरा हो जाऊँ

मैनु पता के दुनिया नूँ
ऐ गवारा नयी हो सकदा
पर झूठ कैंदे ने सारे
के प्यार दुबारा नयी हो सकदा
पर झूठ कैंदे ने सारे
के प्यार दोबारा नयी हो सकदा

तू मैनु पुच्छ ना कोई सवाल
चल दूर किते मेरे नाल
के तेरा हो जाऊँ

मैं किसी और का हूँ फ़िलहाल
के तेरा हो जाऊँ
मैं किसी और का हूँ फ़िलहाल
के तेरा हो जाऊँ
ओ किसी और का हूँ फ़िलहाल
के तेरा हो जाऊँ

हुण रोना मैं, पछतौना मैं
के चन्न नि होया चकोर दा
हुण तूँ वी ऐ किसे होर दी
मैं वी आ किसे होर दा

हुण रोना मैं, पछतौना मैं
के चन्न नि होया चकोर दा
हुण तूँ वी ऐ किसे होर दी
मैं वी आ किसे होर दा

मेरा दिल करदा ऐ सवाल
तेरी मोहब्बत दा की हाल
के तेरा हो जाऊँ
मैं किसी और का हूँ

मैं किसी और का हूँ फ़िलहाल
ओ....


Written by :B Parak
Starring     :Akshay Kumar and Nupur Sanon


Comments

Popular posts from this blog

Excretion IN Humans and Animals

Excretion In Humans Excretion is one of the essential life processes which is required for a living organism to survive.      Excretion is defined as the process of removal of toxic waste materials from one's body.In humans,the nitrogenous waste products,i.e, urea ,is excreted through a well established system called urinary system or excretory system. Human Excretory System consists of a pair of Kidneys and ureters,a Urinary bladder ,and Urethra.Waste is filtered from the blood and is collected in the form of urine in each Kidney. Urine leaves the kidneys through the ureters and is temporarily stored in the Urinary Bladder. From here the urine leaves the body through urethra. Components of Urinary System and their Functions The human Urinary system has following main components- Kidneys Nephrons and Nephric tubules Collecting Tubules Ureters Urinary Bladder Urethra [If you want to read about MECHANISM of urine formation then cl...

Python program for calculating BMI (Advanced)

This is an advanced code for BMI calculator for one who are beginners in python.  You can calculate the following data from this code...  1. Your Body Mass Index (BMI)  2.Your fitness condition based on your weight.  3.The amount of weight you need to gain or loss..  #program goes like this w=int(input('Enter your weight in kgs..')) h=float(input('Enter your height in m..')) def bmi(w,h):     bmi=w/(h**2)     print('Your BMI is ',bmi)     if bmi>18 and bmi <25:         print('You are healthy')     elif bmi<18:         print('You are underweight')         for x in range(0,100,1):             if (w+x)/h**2>18:                 a=x                 int (a)               ...