Results 1 to 4 of 4

Thread: Connect to MySQL Database

  1. #1

    Thread Starter
    New Member Killsoft69's Avatar
    Join Date
    May 2008
    Posts
    3

    Connect to MySQL Database

    MySQL is a database that goes hand-in-hand with PHP.
    This is for People here who dont know how to connect to MySQL.
    You will need it in many PHP development situations.

    PHP Code:
    <?php
     $dbserver 
    "localhost";
    //if you do not know your database server then try localhost
    //You can find information of your mysql database at the PhpMyAdmin Panel

     
    $dbusername "dbusername";
     
    $dbname "dbname";
     
    $dbpass "dbpassword";

     
    $connect mysql_connect($dbserver,$dbusername,$dbpass); //Connects
     
    $selectdb mysql_select_db($dbname); \\Selects desired DataBase
     
     
    if(!$connect || !$selectdb){ //If one or both of the mysql functions fail
      
    die("Cannot connect: " mysql_error()); //Display error
     
    }
    else{ 
    //If no errors occur
      
    echo "You have connected to a database!";
    }
    ?>

    HTML portion of webpage that uses MySQL data

    <?php mysql_close(); //disconnect ?>
    Hope this was helpful
    Last edited by Killsoft69; May 4th, 2008 at 01:35 PM.

  2. #2
    Fanatic Member
    Join Date
    Jul 2007
    Posts
    530

    Re: Connect to MySQL Database

    Welcome to The Forum & Have a look Here

    Thanks !

  3. #3
    WiggleWiggle dclamp's Avatar
    Join Date
    Aug 2006
    Posts
    3,527

    Re: Connect to MySQL Database

    welcome to vbf! We have lots of examples of MySQL code here on the forums.
    My usual boring signature: Something

  4. #4

    Thread Starter
    New Member Killsoft69's Avatar
    Join Date
    May 2008
    Posts
    3

    Re: Connect to MySQL Database

    Quote Originally Posted by dclamp
    > We have lots of examples of MySQL code here on the forums.
    Yeah, I guess I should looked for tutorials on the same subject before I posted mine.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width