An extremely noobish question (Answered)

Hi there!
I’m extremely new to MySQL and php but I desperately need a database which would store highscores.
I found this tutloial http://www.unifycommunity.com/wiki/index.php?title=Server_Side_Highscores.

So, here comes the question:
Should I leave the quotation marks when I change

$db = mysql_connect('mysql_host', 'mysql_user', 'mysql_password') or die('Could not connect: ' . mysql_error());
        mysql_select_db('my_database') or die('Could not select database');

??
Thanks in advance :wink:

You need to keep the apostrophes in there, they indicate text/string information.

thanks a lot ! :stuck_out_tongue: