Things to do when you want to commit suicide!

We all in our lifespan sometime had a thinking to give up our life just because we do not want certain things to happen in our life. For example, when we are jobless for more than a year, cheated by lover/wife/husband, lonely, lost motive in our life, got bad marks or failed in exams etc.

The question is why this feeling generated in our mind? Do we really want to quit our life? Don't we ever thought that life is beautiful? or We had dreams to achieve something?

Answer is we thought that sometime!

Just because we are frustrated with our current or past situation we want to end it now. So if we stop believing that nothing 'll change than our life will change. 

If you reading this means you are frustrated with life or looking for knowledge about life. This is a good sign for your life. Yes, it is !

It means you know your present situation and looking for solutions.

So without making more talks just do following things when you thought about committing suicide:
1. Stop yourself for 15 mins & drink a lot of water. Try to say lets have life for 15 mins more as positive.
2. Say life is beautiful and I am strong to face bad and reach to good.
3. See yourself in a mirror and say I am born to succeed. I have my own fair image!
4. Say everything that  happens to me will make me more strong & intelligent to handle bad things.
5. Now just look around yourself and see you have a lot of things that you can use to make your living. Imagine about starving people at road having no access to internet, money, food. Go out try to help them. 
6. Write your like, dislikes, strength & weakness in a paper & paste it in your dairy. Try to remove you weakness and erase if you can overcome after few days. Think of how you can use your likes & strength and do it in your life.
7. Feel the real happiness about life. Sometimes its too bad but it is what make it beautiful
8. Change your current situation or life style. If possible travel to some other place.

LIFE IS BEAUTIFUL! 

MySQL Connection

MySQL Connection using mysql binary:

You can establish MySQL database using mysql binary at command prompt.

Example:

Here is a simple example to connect to MySQL server from command prompt:
[root@host]# mysql -u root -p
Enter password:******
This will give you mysql> command prompt where you will be able to execute any SQL command. Following is the result of above command:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 2854760 to server version: 5.0.9

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
In above example, we have used root as a user but you can use any other user. Any user will be able to perform all the SQL operations, which are allowed to that user.
You can disconnect from MySQL database any time using exit command at mysql> prompt.
mysql> exit
Bye

MySQL Connection using PHP Script:

PHP provides mysql_connect() function to open a database connection. This function takes five parameters and returns a MySQL link identifier on success or FALSE on failure.

Syntax:

connection mysql_connect(server,user,passwd,new_link,client_flag);

Parameter
Description
server
Optional – The host name running database server. If not specified, then default value is localhost:3036.
user
Optional – The username accessing the database. If not specified, then default is the name of the user that owns the server process.
passwd
Optional – The password of the user accessing the database. If not specified, then default is an empty password.
new_link
Optional – If a second call is made to mysql_connect() with the same arguments, no new connection will be established; instead, the identifier of the already opened connection will be returned.
client_flags
Optional – A combination of the following constants:
  • MYSQL_CLIENT_SSL – Use SSL encryption
  • MYSQL_CLIENT_COMPRESS – Use compression protocol
  • MYSQL_CLIENT_IGNORE_SPACE – Allow space after function names
  • MYSQL_CLIENT_INTERACTIVE – Allow interactive timeout seconds of inactivity before closing the connection
You can disconnect from MySQL database anytime using another PHP functionmysql_close(). This function takes a single parameter, which is a connection returned by mysql_connect() function.


Syntax:

bool mysql_close ( resource $link_identifier );
If a resource is not specified then last opened database is closed. This function returns true if it closes connection successfully otherwise it returns false.

Example:

Try out the following example to connect to a MySQL server:
<html>
<head>
<title>Connecting MySQL Server</title>
</head>
<body>
<?php
   $dbhost = 'localhost:3036';
   $dbuser = 'guest';
   $dbpass = 'guest123';
   $conn = mysql_connect($dbhost, $dbuser, $dbpass);
   if(! $conn )
   {
     die('Could not connect: ' . mysql_error());
   }
   echo 'Connected successfully';
   mysql_close($conn);
?>
</body>
</html>