File "db.php"

Full path: /home/mysamm/public_html/mysamm_login/db.php
File size: 288 B
MIME-type: text/x-php; charset=us-ascii
Charset: utf-8

Download   Open   Edit   Advanced Editor &nnbsp; Back

<?php
$servername="localhost";
$username = "mysamm";
$password = "MST1ps@noida!#1";
$handle= mysql_connect($servername, $username,$password)or die('Could not connect: ' . mysql_error());
mysql_select_db('mysamm_prd') or die(mysql_error());
mysql_set_charset('utf8',$handle);

return;
?>