هذا الموقع يشرح طريقة تركيب سيرفر اباتشي على الكمبيوتر الشخصي
http://internetmaster.com/installtut...load_mysql.htm
مطلوب شرح هذه الخطوات اي الوضائف او الغرض منها خطوه بخطوه
Root Access Only
The default privileges on Windows give all local users full privileges to all databases without specifying a password. To make MySQL more secure, you should set a password for all users and remove the row in the mysql.user table that has Host='localhost' and User='' & Host='localhost' and User='root'.



Click "Start->Run" type "command" for win9x or "cmd" for win2k/xp
Do the following in dos prompt:
C:\> C:\mysql\bin\mysql mysql
mysql> use mysql;
mysql> DELETE FROM user WHERE Host='localhost' AND User='be_careful_here';
mysql> DELETE FROM user WHERE Host='localhost' AND User='root';
mysql> QUIT
C:\> C:\mysql\bin\mysqladmin reload
C:\> C:\mysql\bin\mysqladmin -u root password your_password

ولكم تحياتي