Files
moms/includes/connect.php
T

21 lines
366 B
PHP
Raw Normal View History

2017-05-26 15:17:48 +04:00
<?php
$con = 0;
if($con == 0) /// for local server
{
//Database Connection
$host = "localhost";
2020-10-17 18:25:58 -05:00
$user = "moms";
$pass = "chngeme";
2017-05-26 15:17:48 +04:00
$conn = mysql_connect($host,$user,$pass);
2020-10-17 18:25:58 -05:00
mysql_select_db("moms");
2017-05-26 15:17:48 +04:00
///////////////////////////////////////////////
}
define("RECORD_PER_PAGE",10);
define("PAGE_LINKS_PER_PAGE", 4);
?>