呼唤PHP大牛~~~

 

被一坨PHP代码弄了一个晚上还没有搞定。表说我是菜鸟,从来没否定过。

 

PHP连接MySQL数据库并且用表格输出数据库数据

<?         
    $connt=mssql_connect("localhost", "root", "");
    mssql_select_db("annuaire",$connection);
    $strSql="select * from carnet ";
    $result=mssql_query($strSql,$connection);
    print "<table   width=’561′   border=’0′   cellpadding=’1′>" ;
    print "<th   width=’107′><div   align=’center’>Id</div></th>";
    print "<th   width=’112′><div   align=’center’>Nom</div></th>" ;
    print "<th   width=’149′><div   align=’center’>Prenom</div></th>" ;
    print "<th   width=’97’><div   align=’center’>Tel</div></th>";
    while($row=mssql_fetch_array($result))
{
    print "<tr>\n" ;
    print "<td>{$row[‘Id’]}</td>";
    print "<td>{$row[‘Nom’]}</td>" ;
    print "<td>{$row[‘Prenom’]}</td>" ;
    print "<td>{$row[‘Tel’]}</td><br></n>" ;
    print "</tr>\n";
}
    print "</table>\n"
    mssql_close($connt);
?>   

 
竟然显示成这样了

Id

" ; print "

Nom

" ; print "

Prenom

" ; print "

Tel

" ; while($row=mssql_fetch_array($result)) { print "\n" ; print "{$row[‘Id’]}" ; print "{$row[‘Nom’]}" ; print "{$row[‘Prenom’]}" ; print "{$row[‘Tel’]}
" ; print "\n" ; } print "\n"; mssql_close($connt); ?>

 

无奈找了n多实例。头大。貌似只是小问题而已。。。呃。。。

 

 

2008-11-26

果然小问题 最开头忘了加php. 难怪人家人不出来…