Your IP : 216.73.217.79


Current Path : /var/www/cesa.co.za/relay/include/
Upload File :
Current File : /var/www/cesa.co.za/relay/include/db.php.bak

<?php

  $host = "localhost";
  $db_user = "cesa";
  $db_password = "cesa123";
  $database = "db_cesa";

  $link = mysql_connect($host,$db_user,$db_password);
  if ($link) {
    $db=mysql_select_db($database);
    if (!$db) {
       die("Could not select db - ".mysql_error());
    } // end if
  } //end if
?>