• home
  • forum
  • my
  • kt
  • download
  • Connecting to MySQL database from PHP

    Author: 2007-09-03 10:53:29 From:

    This tutorial will show you how to connect to MySQL database from PHP script.

    mysql_connect (host, username, password)

    Returns a MySQL link identifier on success, or FALSE on failure.


    <?php
    $host
    ="localhost"
    ;
    $user="root"
    ;
    $password="password"
    ;
    $connect=mysql_connect($host$user$password
    );
    ?>

    discuss this topic to forum

    relation tutorial

    No relevant information

    Category

      Miscellaneous (6)

    New

    Hot