Maniacomputer Web Mail     Powered bydeskNow
     Learn More
    or     Register
Useful

Links


Free technical Tutorials At techtutorials.net



Link Exchange at iWEBTOOL.com

 


For the graphics you need on your website

For javascript
1756
            PHP > Installing MySql
 Rate this Page:    your vote is welcome
      Not Rated                                                  

How to Install MySql on Windows XP

  • Installing and configuring PHP
  • Installing MySql
  • Installing Apache


  • Install MySql 5.0.45 on Windows XP


    

    Download MySql 5.0.45 Win32  ,in other words the Windows version from the MySql website,

     

      MySql Wizard




      Sql Wizard




      Sql Wizard




      MySql configuration  Wizard





      Sql Configuration Wizard




      Sql Configuration Wizard




      MySql configuration  Wizard



      Sql Configuration Wizard




      Sql Configuration Wizard




      MySql configuration  Wizard



      Sql Configuration Wizard




      Sql Configuration Wizard




      MySql configuration  Wizard



      Sql Configuration Wizard




      MySql configuration  Wizard



      Sql Configuration Wizard





    When the installation is finished ,you have to configure PHP to run MySql with the following steps









    To test if you can connect to MySql using PHP , open Notepad , new document and copy and paste the following code:

    <?php
    $host='localhost';                 //host name
    $username='user';                //database user name
    $password='mypassword';     //database password

    mysql_connect($host,$username,$password) or die (mysql_error());
    echo"connected<br/>";
    ?>

    Then save the file in your website root directory and name it test_sql.php.Now open the file in your browser and,if everything OK you should read 'connected ' on a white page ,