- 论坛徽章:
- 0
|
<html>;
<?php
if (!$connect_id = ifx_connect("stand@gs80","informix","informix" ) {
echo "Unable to connect to Informix Database\n";
exit();
}
$sql = "select * from user";
$result = ifx_query($sql, $connect_id) or die ("couldn't execute the query" ;
?>;
<table>;
<tr>;
<?php
while ($row = ifx_fetch_row($result)) {
echo "<td>;".$row['username']."</td>;";
echo "<td>;".$row['passwd']."</td>;\n";
}
ifx_free_result($result);
ifx_close($connect_id);
?>;
</tr>;
</table>;
</html>;
----------
前几天用得好好的,突然今天页面提示:
Warning: ifx_connect(): E [SQLSTATE=IX 000 SQLCODE=-461] in /www/vip/2.php on line 3
Unable to connect to Informix Database
我的数据库是连接远程的informix
dbaccess 都可以用的。
php的机器上装的是informix客户端 |
|