Can not connect to mysql

There is my php script any one can tell me what is my error?

<? function send_sql($rsql) { if (! $res=@mysql_query($rsql)) { echo mysql_error(); echo "

< Retour"; echo '
< Retour au d?but'; exit; } return $res; } $mysql_host="localhost"; $mysql_user="icez_news"; $mysql_base="icez_news"; $mysql_passe="------"; $link = mysql_connect($mysql_host, $mysql_user, $mysql_passe); $mysql_select_base=mysql_select_db($mysql_base, $link); ?>

You’re supposed to tell us what your error is. Not the other way around ;)

Sponsor our Newsletter | Privacy Policy | Terms of Service