Quote of the… night!
The MySQL Server can be started manually from the command line. This can be done on any version of Windows.
To start the mysqld server from the command line, you should start a console window (or “DOS window”) and enter this command:
shell> "C:\Program Files\MySQL\MySQL Server 5.0\bin\mysqld"The path to mysqld may vary depending on the install location of MySQL on your system.
You can stop the MySQL server by executing this command:
shell> "C:\Program Files\MySQL\MySQL Server 5.0\bin\mysqladmin" -u root shutdownNote:
If the MySQL root user account has a password, you need to invoke mysqladmin with the -p option and supply the password when prompted.This command invokes the MySQL administrative utility mysqladmin to connect to the server and tell it to shut down. The command connects as the MySQL root user, which is the default administrative account in the MySQL grant system. Note that users in the MySQL grant system are wholly independent from any login users under Windows.
If mysqld doesn’t start, check the error log to see whether the server wrote any messages there to indicate the cause of the problem. The error log is located in the C:\Program Files\MySQL\MySQL Server 5.0\data directory. It is the file with a suffix of .err. You can also try to start the server as mysqld –console; in this case, you may get some useful information on the screen that may help solve the problem.
The last option is to start mysqld with the –standalone and –debug options. In this case, mysqld writes a log file C:\mysqld.trace that should contain the reason why mysqld doesn’t start.
Use mysqld –verbose –help to display all the options that mysqld supports.
Command Line = Life Saver!
read also...
- SQL error – Out of range value adjusted for column OR Duplicate entry xxx for key 1 (0)
- SQL Injection Cheat Sheet by ferruh mavituna (0)
- Joomla/Mambo – PDF Indexer Module (7)
- 15 Rules to follow for safer web applications (3)
- Athens StartUp Weekend 2 (0)
- Hotlinking, Bandwidth Theft and mod_rewrite (0)
- Metallica – The Unforgiven (1)
- Microsoft Tech-Ed Europe 2009 | 9-13 November 2009, Berlin, Germany (0)
- Crash in nsTextFrame::ClearTextRun() – Firefox 3.0.9 (0)
- Panorama – Jordan (0)


The following link has an excellent explanation of how to enable Arabic, Urdu and other foreign language support in PHP/MySQL.
http://addr.pk/a44d
OR
http://phphelp.co/2012/03/30/how-to-make-php-and-mysql-support-arabic-urdu-and-charactersets-or-other-foreign-languages/