您的位置:首页 >> Web开发 >> PHP技术 >> PHP技巧 >> 正文
PHP技巧 RSS
 

通过ODBC连接的SQL SERVER实例

http://www.rdxx.com 01年05月21日 00:00 网络 我要投稿

关键词: 实例 , SQL Server , ODBC , 连接 , SQL
 
通过ODBC连接的SQL SERVER实例一

<?
$connection = odbc_connect("mydata","userid","passwd");
$query = "select * from tab_1 where  no>0" ;
$result = odbc_do($connection,$query) ;
print "<table border='1' width='100%' id='tab1' cellPadding='1' cellSpacing='0'  align='top' bordercolorlight='#008000' bordercolordark='#008000'>";
while(odbc_fetch_into($result,&$fields))  
{
print "<tr>\n";
for ($i = 21; $i <= 31 ; $i ++)  {
print "<td width='6%'><input style='BACKGROUND-COLOR: #ffffff; BORDER-BOTTOM: #000000 1px solid; BORDER-LEFT: #ffffff 1px solid; BORDER-RIGHT: #ffffff 1px solid; BORDER-TOP: #ffffff  1px solid; BORDER-BOTTOM: #ffffff 1px solid; COLOR: #000000; FONT-SIZE: 9pt'  size='7' type='text'  name=text$i value=$temp>";
}
}
print "</table>";
odbc_close($connection);
?>  

 
 
标签: 实例 , SQL Server , ODBC , 连接 , SQL 打印本文
 
 



Valid XHTML 1.0 Transitional
Copyright ©2005 - 2008 Rdxx.Com,All Rights Reserved
收藏本页
收藏本站