The title is auto explicative, trough my php script, the script is tottaly fine:
<?
function conecta() // Esta função faz a conexão com o banco de dados MySQL
{
$dbhostname = "localhost"; // Hostname of our MySQL server
$dbase = "marketing"; //Logical database name on that server
$dbuser = "root"; // User for login
$dbpass = ""; // Password for login
mysql_connect($dbhostname, $dbuser, $dbpass) or die("Não foi possível conectar à base de dados");
mysql_select_db($dbase) or die("Não foi possível selecionar a base de dados");
}
?>
but trough phpMyAdmin i use the same data, and i can login beaultifully. Any ideas? PS: i just installed my zend host. but seems to be really fine.

conectain your code somewhere? – Teena Thomas Dec 11 '12 at 18:02mysql_*functions in new code. They are no longer maintained and are officially deprecated. See the red box? Learn about prepared statements instead, and use PDO or MySQLi - this article will help you decide which. If you choose PDO, here is a good tutorial. – Neal Dec 11 '12 at 18:04