Hi
you guys know the basic SQL database connection thing right? this:
$host = “”;
$user = “”;
$password = “”;
$database = “”;
mysql_connect($host, $user, $password, $database);
my question is how can I use this in a function
function oConnect ( what should I write here? )
{
what should I put here ?
}