Friday, March 25, 2011

Funny jokes




Tried with her right hand, she even tried with her teeth

A couple went to a doctor because the man was feeling down, tired all the time. The doctor said I will give a shot of vitamins, a prescription for some pep pills from the drugstore, and an empty jar for checking your sperm count - bring it back in next week so I can check it. When the guy came back to the doctor, the doctor said "Why, this jar is empty, I told you I needed to do a sperm count." The guy said, "I tried with my left hand, I tried with my right hand, my wife tried with her left hand and she also tried with her right hand, she even tried with her teeth. We could not get that jar open!"


'Die! You son of a bitch, die!'"

"I'm worried that I'm losing my wife's love," the husband told the counselor.
"Has she started to neglect you?"
"Not at all," the dejected man replied. "She meets me at the door with a cold drink and a warm kiss. My shirts are always ironed, she's a great cook, the house is always neat, she keeps the kids out of my hair. She lets me choose the television shows we watch and she never objects to sex or says she has a headache."
"So what's the problem?"
"Maybe I'm just being too sensitive," the husband ventured, "but at night, when she thinks I'm sleeping, she puts her lips close to my ear and whispers, 'Die! You son of a bitch, die!'"


Taxi driver versus Hooker
A young man and his date were parked on a back road some distance from town. They were about to have sex when the girl stopped.

"I really should have mentioned this earlier, but I'm actually a hooker and I charge $20 for sex." The man reluctantly paid her, and they did their thing.

After a cigarette, the man just sat in the driver's seat looking out the window. "Why aren't we going anywhere?" asked the girl.

"Well, I should have mentioned this before, but I'm actually a taxi driver, and the fare back to town is $25..."


Taken From Youtube


Obama in Nepal

Nepali bhayera Nepali ko nei ( means yourself) khilli na udaunu. Obama ko yo jhutho tasveer nepali get up maa rakhera tapai le aafu lai auta fraud ra murkha nepali bhanera you tube darshak lai pahichan dinu bhayo. Thank you. (try yourself to be like obama by following his thoughts, principles and actions rather than false imitation which could really bring prosperity and harmoney in the country.)

CSV import /export code






$db_hostname = 'localhost';

$db_username = 'root';

$db_password = '';

$db_name = 'db_csvtest';
$db_connection = mysql_connect($db_hostname, $db_username, $db_password) or die("Error:=>Could not connect");

mysql_select_db($db_name);
?>






Untitled Document



<?php

  include('dbconnect.php');

  ?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

  <html xmlns="http://www.w3.org/1999/xhtml">

  <head>

  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />

  <title>Export MYSQl Data to CSV/Excel file in PHP</title>

  <link rel="stylesheet" type="text/css" href="css/style.css" />

  </head>

<body>

  <div align="center" style="padding:20px;">

<table  width="100%"  cellpadding="0"  cellspacing="0" border="0">

  <tbody>

  <tr>

  <td>

  <strong>Exporting MySQL data  into CSV/Excel file in PHP</strong>

  </td>

  </tr>

  <tr>

  <td>

  <div  style="overflow:scroll;  height:400px; width:300px; margin-top:20px;">

  <?php

  $result = mysql_query("SELECT *    FROM tbl_country ORDER BY country_id ASC");

  $row_data = mysql_fetch_array($result);

  while($row_data = mysql_fetch_array($result)) {

  ?>

 

  <div style="padding:0px 0px 2px 0px; border: 1px medium #999999;"><?php echo $row_data['country_id']?>  -  <?php echo $row_data['country_name']?>  - <?php echo $row_data['country_code']?> </div>

 

  <?php } ?>

  </div>

 

 

  </td>

  </tr>

  <tr>

  <td style="padding-top:20px; font-weight:bold;">

  <a href="export_data.php?filename=country_list">Export Data to Excel File</a>

  </td>

  </tr>

  <tr>

  <td style="padding-top:20px; font-weight:bold;">

  <a href="csv.php?filename=country_list">Export Data to CSV File (with table fieldname as header)</a>

  </td>

  </tr>

  </tbody>

  </table>

</div>


<?php

  mysql_close($db_connection);

  ?>

  </body>

  </html>







CSV import /export code






$db_hostname = 'localhost';

$db_username = 'root';

$db_password = '';

$db_name = 'db_csvtest';
$db_connection = mysql_connect($db_hostname, $db_username, $db_password) or die("Error:=>Could not connect");

mysql_select_db($db_name);
?>






Untitled Document



<?php

  include('dbconnect.php');

  ?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

  <html xmlns="http://www.w3.org/1999/xhtml">

  <head>

  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />

  <title>Export MYSQl Data to CSV/Excel file in PHP</title>

  <link rel="stylesheet" type="text/css" href="css/style.css" />

  </head>

<body>

  <div align="center" style="padding:20px;">

<table  width="100%"  cellpadding="0"  cellspacing="0" border="0">

  <tbody>

  <tr>

  <td>

  <strong>Exporting MySQL data  into CSV/Excel file in PHP</strong>

  </td>

  </tr>

  <tr>

  <td>

  <div  style="overflow:scroll;  height:400px; width:300px; margin-top:20px;">

  <?php

  $result = mysql_query("SELECT *    FROM tbl_country ORDER BY country_id ASC");

  $row_data = mysql_fetch_array($result);

  while($row_data = mysql_fetch_array($result)) {

  ?>

 

  <div style="padding:0px 0px 2px 0px; border: 1px medium #999999;"><?php echo $row_data['country_id']?>  -  <?php echo $row_data['country_name']?>  - <?php echo $row_data['country_code']?> </div>

 

  <?php } ?>

  </div>

 

 

  </td>

  </tr>

  <tr>

  <td style="padding-top:20px; font-weight:bold;">

  <a href="export_data.php?filename=country_list">Export Data to Excel File</a>

  </td>

  </tr>

  <tr>

  <td style="padding-top:20px; font-weight:bold;">

  <a href="csv.php?filename=country_list">Export Data to CSV File (with table fieldname as header)</a>

  </td>

  </tr>

  </tbody>

  </table>

</div>


<?php

  mysql_close($db_connection);

  ?>

  </body>

  </html>







Wednesday, March 23, 2011

Letters Fun
























Sunday, March 20, 2011

Sannani timi lai herkaula lauri le thaka thaka thaka.......Is he talking about sex?


Funny Nepalese Song, funny nepali songs, nandita kc sexy songs, nandita music video, nandita popular music video, शान्नानी तिमीलाई हिर्काउला लउरिले ठेयक्क ठेयक्क, Dhanyabaad. when i miss sweetest memory of my life i just listen this song jai mahakali ayo gorkhali keep up the good job folks cheers cutegurl2 Great song & nice video.Babu Bogati is very handsom & he have a great voice.modal is very beautiful & sweet.now babu bogati & this model was staring their first movie ' BATO MUNIKO PHOOL'.this moive was released on last month.people sayes this moive is good.best off luck babu bogati for nepali movie.i hope neoali film industry get a new rajesh hamal. JAY JAY NEPAL SUNDER SANTH VISHAL JAY NEPAL Its simply mind blowing ! ungle ma gayera sanna timilai lauri hiraula thyakka thyakka thyakka. LOL . now i understand why this song has one million hits Expression like South Indian Hero & Heroin but song is great. Dev from India (Kumoun), i think Nepali & Uttaranchali culture, language & face are same. Nandita This song is played in every freaking Nepali party. The funniest part is when all these old couples get all romantic when this song plays and start dancing lol. Fun song! Sannani timi lai herkaula lauri le thaka thaka thaka.......Is he talking about sex? that's all i can think of. her name is nandita k.c, she is now actress and lost aroud 15 k.g for her movie and apparently she was in huge controversy for giving kiss with rajesh hamal for her upcoming movie

छाडेर काम सारा एक काम रोजी रै छु यो देशमा म एउटा मानिस खोजी रैछु



excellent song.......reality of our country heart touching songs my god we need really one person who make our country, Gyanendra shah music video, Gyanendra shah lyrics, Gyanendra shah songs, most popular song of Gyanendra shah, छाडेर काम सारा एक काम रोजी रै छु यो देशमा म एउटा मानिस खोजी रैछु,
heart touching national song, heart touching national song, Greae song of sishir dai, patronising song of Nepal, keep up the great job songs
Mother and motherland are greater than heaven. Behold nepalese it's time to prove this for the sake of soverignty and pride of mother Nepal. Don't let anybody divide us in the name of religion and ideologies and class. The glory of being nepli is on being a true to this very slogan of JANANI JANMABHUMISHA SWARGADAPI GARIYESI.
SHISHIR YOGI, shishir yogi popular songs, vocalist SHISHIR YOGI, shishir yogi songs, shishir yogi music video, shishir yogi’s छाडेर काम सारा एक काम रोजी रै छु यो देशमा म एउटा मानिस खोजी रैछु, शिसिर योगिका गीतहरु

Please dont stop the music with lyrics and video



Please don't stop the music
Please don't stop the music
Please don't stop the music
Please don't stop the music

It's getting late
I'm making my way over to my favourite place
I gotta get my body moving
Shake the stress away
I wasn't looking for nobody when you looked my way
Possible candidate, yeah
Who knew
That you'd be up in here looking like you do
You make and staying over here, impossible
Baby, I'm a say your aura is incredible
If you don't have to go, don't

Do you know what you started?
I just came here to party
But now we're rocking on the dance floor, actin' naughty
Your hands around my waist
Just let the music play
We're hand in hand, chest to chest and now we're face to face

[CHORUS]
I wanna take you away
Let's escape into the music, DJ let it play
I just can't refuse it
Like the way you do this
Keep on rockin' to it
Please don't stop the, please don't stop the music
I wanna take you away
Let's escape into the music, DJ let it play
I just can't refuse it
Like the way you do this
Keep on rockin' to it
Please don't stop the, please don't stop the
Please don't stop the music

Baby are you ready cause it's getting close
Don't you feel the passion ready to explode?
What goes on between us no-one has to know
This is a private show

Do you know what you started?
I just came here to party
But now we're rocking on the dance floor, actin' naughty
Your hands around my waist
Just let the music play
We're hand in hand, chest to chest and now we're face to face

[CHORUS]

[x4]
Please don't stop the music

[CHORUS x2]

Please don't stop the music
Please don't stop the music
Please don't stop the music