以下のPHPコードは、データベースサーバーに接続するためのチュートリアルにあります。
<?php
/*connect to mysql database */
$non=mysql_connect($host,$dbuser,$dbpassword) or die("Can't connect to server");
mysql_select_db($dbase,$non) or die("can't connect to database");
?>
"$ non"とは何ですか?
その実行は次のようなものですか?
<?php
/*connect to mysql database */
mysql_connect($host,$dbuser,$dbpassword) or die("Can't connect to server");
mysql_select_db($dbase) or die("can't connect to database");
?>
あなたのサーバ接続情報を格納しているその変数 –
第1回:** mysql_ *メソッドの使用をやめて、それらは廃止され、安全ではありません!**。 2番目:PHPのマニュアルでこのような情報を確認してください:http://php.net/manual/en/function.mysql-connect.php – Peon
'bool mysql_select_db(文字列$データベース名[、リソース$ link_identifier = NULL])' –