Éste es el arcivo inc_dbcon.php
Código:
  
Así debería funcionar?<?php	
	
	// Change these to be for your database
	$mysql_host = "PAQUITO.COM";
	$mysql_database = "PACO";
	$mysql_user = "PACO";
	$mysql_password = "PAQUITO321";
	
if(!$dbConn = mysql_connect('PAQUITO.COM', 'PACO', 'PAQUITO321'))	
	die('I could not connect to the database. Clease check the inc_dbcon file and make sure everything is correct.');
if(!mysql_select_db($dbname, $dbConn))	
	die('I could not select the database. Check the inc_dbcon file and make sure everything is correct.');
?>
Me arroja éste error->
I could not select the databaseA. Check the inc_dbcon file and make sure everything is correct.
Qué es lo que tengo mal? Cómo lo arreglo?
Muchas gracias!!!
 
 


