Skip to main content

Koi deewana kehta hai, koi pagal samajhta hai by Dr. Kumar Viswas

Singer : Dr. Kumar Viswas


Koi deewana kehta hai, koi pagal samajhta hai,
Magar dharti ki bechaini ko bas badal samajhta hai
Main tujhse door kaisa hoon, tu mujhse door kaisi hai
Ye tera dil samajhta hai ya mera dil samajhta hai..

Mohbbat ek ehsaason ki pawan si kahani hai
Kabhi Kabira deewana tha, kabhi meera deewani hai
Yahan sab log kehte hain meri aankhon main aasoon hain
Jo tu samjhe to moti hain, jo na samjhe to paani hain

Bahut bikhra bahut toota thapede seh nahin paaya
Hawaaon ke isharon par magar main beh nahin paaya
Adhoora ansuna hi reh gaya yun pyar ka kissa
Kabhi tum sun nahin paaye, kabhi main keh nahin paaya

Samandar peer ka andar hai lekin ro nahi sakta
Ye ansoon pyar ka moti hai isko kho nahi sakta
Meri chahat ko dulhan tu bana lena magar sunle
Jo mera ho nahi paya wo tera ho nahi sakta

Bhramar koi kumudni par machal baitha to hungama
Hamare dil main koi khwaab pal baitha to hungama
Abhi tak doob ke sunte sab kissa mohhabat ka
Main kisse ko haqeekat main badal baitha to hungama


Comments

Popular posts from this blog

Minimum and maximum number with - and + 500 in Mysql and Sql query and Find out table scheema of our database in Mysql and sql query and Find out all table name of our database in Mysql and sql query and Find out current date and time in mysql and sql help of sql query

Minimum and maximum number with - and + 500 in Mysql and Sql query:- syntax:-  SELECT MIN(Used)-500 , max(Used)+500 FROM audit Find out current date and time in mysql and sql help of sql query:- syntax:- SELECT now() Find out database name in Mysql and sql query:- syntax:-  SELECT DATABASE(); Find out all table name of our database in Mysql and sql query:- syntax:- SHOW TABLES; Find out   table scheema   of our database in Mysql and sql query:- syntax:- DESCRIBE <table name>;

Php prime number program with use of class

Php prime number  program with use of class <?php class find_p_number { # Function to check single number is Prime or not static function isPrime ( $ number ) { # Start temporary number from 2 (1 is not a prime number) $ i = 2 ; # 1 is not a prime number if ( $ number == 1 ) return false ; # 2 is the only even prime number if ( $ number == 2 ) return true ; # Check numbers other than 1 and 2 while ( $ i <= sqrt ( $ number ) ) { if ( $ number % $ i == 0 ) return false ;   $ i ++ ; } # If the execution has come to this point, means it is a prime Number :) return true ; } # Function to check Prime Numbers between two given numbers static function betweenTwoNumbers ( $ num1 , $ num2 ) { $ prime_numbers = array ( ) ; # Check Prime Numbers between two given numbers for ( $ num1 ; $ num1 < $ num2 ; $ num1 +...

My first wordpress plugin | how create wordpress plugin | wordpress plugin tutorial

My first wordpress plugin | how create wordpress plugin | wordpress plugin tutorial <?php /* * Plugin Name: Mydb * Description: A short example showing how to add a taxonomy called Course. * Version: 1.0 * Author: developer.wordpress.org * Author URI: https://wordpress.slack.com/team/aternus */ /* ==============STEP 6================== */ function set_error($value) { echo "<div id='wrap'> <div class='error'> ".$value." </div>      </div>"; } if (isset($_POST['submit']) && isset($_POST['name'])) { if(!empty($_POST['name']) && !empty($_POST['email']) && !empty($_POST['text']) && !empty($_POST['url']) )  { Mydb_Insert_data($_POST['name'],$_POST['email'],$_POST['text'],$_POST['url']); }else{ set_error("all field are required"); } } function Mydb_Insert...