I'm trying to connect to my MySQL DB with the Terminal on my Apple (With PHP).
Yesterday it worked fine, and now I suddenly get this error (See title). I have no clue how to solve it. I've spend all my free time trying today =(
The script works when I use my Browser to run it (I have XAMPP installed), but Terminal refuses to connect to the DB.
Her eis the file that I include to connect (Script works when I don't include this but then it doesn't connect to the DB):
<?php
mysql_connect("localhost", "root", "") or die(mysql_error());
mysql_select_db("FNB1C_data") or die(mysql_error());
?>
That should be right since with my Browser I can connect when I run the script.
The command I use is "php scriptname.php".