[前][次][番号順一覧][スレッド一覧]

mysql:7050

From: 天野 晴好 <天野 晴好 <bon0743@xxxxxxxxxx>>
Date: Tue, 25 Feb 2003 17:17:28 +0900 (JST)
Subject: [mysql 07050] parse error

初心者で初投稿の天野と申します。
環境は、windows2000pro,an httpd1.42h,mysql3.23.55,php4.3.1
を利用して
web serverを構築。

コマンドプロンプトでroot,password(xxxxxx)で入りdatabase
を作りました。
"select * from phone"にてdataをとりだせます。
下記のfile(mysql.php)をドキュメントルートの下にフォール
ダー・phoneを作り、入れてあります。

<html><head>
<title>DB test</title></head>
<body>
<table>
<tr><th>NAME</th><th>TELNO</th></tr>
<?php
mysql_connect(localhost,root,xxxxxx);
mysql_select_db('test');
$result = mysql_query('select name,telno from phone');
while ($row = mysql_fetch_array($result)) {
echo "<tr>";
echo "<td>".$row["name"]."</td>";
echo "<td>".$row["telno"]."</td>";
echo "</tr>";
}
?>
</table>
</body>
</html>
これをIEでhttp://127.0.0.1/phone/mysql.phpで接続すると
Parse error: parse error, unexpected T_STRING in
C:\Program Files\An Httpd\Documents\phone\mysql.php on
line 12
の表示となります。
12行目はmysql_connect(localhost,root,xxxxxx);の個所です
。

レンタルサーバーではちゃんと表示されます。私のserver上でmysql
およびphpでの設定上問題があるのでしょうか。
どなたか、ご教授ください。





__________________________________________________
Do You Yahoo!?
Yahoo! BB is Broadband by Yahoo!
http://bb.yahoo.co.jp/


[前][次][番号順一覧][スレッド一覧]

->    7050 2003-02-25 17:17 [天野 晴好 <bon0743@x] parse error                             
      7051 2003-02-25 18:42 ┗["MIYATSU Kazunari" <]                                       
      7052 2003-02-25 19:13  ┗[天野 晴好 <bon0743@x]