A ver, tu pones
Código PHP:
$c = conexion();
Pero donde declaraste la función te falta devolver el identificador de la conexion
Código PHP:
<?
function conexion(){
$host = "localhost";
$username = "nicolas76\$nico";
$password = "mipass";
$database = "nicolas76\$midatabase";
$c=mysql_connect($host, $username, $password);
if(!$c){
die("ERROR AL CONECTAR AL SERVIDOR");
}
$db=mysql_select_db($database, $c);
if(!$db){die("ERROR AL CONCTARSE A LA BASE DE DATOS");}
//TODO OK
return $c;
}
?>