If I use require_once for connect.php from mypage.php do I need to close the connection? If I do need to close the connection how will it be written? mysql_close(???);
connect.php
$host="localhost"; // Host name
$username="root"; // Mysql username
$password=""; // Mysql password
$db_name="test"; // Database name
$tbl_name="test_mysql"; // Table name
// Connect to server and select databse.
mysql_connect("$host", "$username", "$password")or die("cannot connect");
mysql_select_db("$db_name")or die("cannot select DB");
mypage.php
require_once('connect.php');