..show you how to make a multi bridge between THC_DO, THC_SS and THC_II and keep track of the output in realtime using iframes. So what exactly are we going to do? First of all if you..
<?php
/* Connection for mysql */
if(!defined('IN_SCRIPT')){
exit;
}
/* Connects to mysql
Connects to a mysql database
PARAMETERS:
$sHost: host to connect with
$sUser: mysql user
$sPass: mysql pass
$iPort: port to connect with
RETURNS:
TRUE: connected
FALSE: connection failed
*/
function ConnectDB($sHost,$sUser,$sPass,$iPort){
return(mysql_connect($sHost.":".(@is_int((int)$iPort) ? $iPort : 3306),$sUser,$sPass));
}
?>