いくつかのデータをデータベースに投稿しようとしています。コードは問題ないようですが、データベースに新しいエントリを作成していません。私はどんな間違いをしていますか?
PhP スクリプト:
<?php
mysql_connect('localhost','abcd','12345');
mysql_connect_db('xmytestdb');
$hello = $_POST['hello'];
$world = $_POST['world'];
$query = "INSERT INTO 'myTable' VALUES ('','".mysql_real_escape_string($hello)."', '".mysql_real_escape_string($world)."')";
mysql_query($query);
?>
よろしく