I can't figure out what is wrong with the file below. It is not entering the data into the database.
<?php
mysql_connect("localhost","root","");
mysql_select_db("monoling_dictionary");
/ This section inserts values into english, monolingua and comment text fields in the monoling_dictionary database. /
mysql_query("INSERT INTO 'dictionary' ('english','monolingua','comment')
VALUES ('two','dva','russian')");
?>