通过ODBC连接的SQL SERVER实例
作者:bea
通过ODBC连接的SQL SERVER实例一 <? $connection = odbc_connect("mydata","userid","passwd"); $query = "select * from tab_1 whereno>0" ; $result = odbc_do($connection,$query) ; print "<table border='1' width='100%' id='tab1' cellPadding='1' ce
通过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>
";
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);
?>
有用 | 无用
<?
$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>
";
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);
?>
有用 | 无用
猜你喜欢
您可能感兴趣的文章:
- 实现“上一页”和“下一页按钮
- 一个程序下载的管理程序(四)
- PHP下MAIL的另一解决方案
- 一个程序下载的管理程序(二)
- 在php中取得image按钮传递的name值
- PHP4之COOKIE支持详解
- 一个程序下载的管理程序(一)
- 一个程序下载的管理程序(三)
- 计数器详细设计
- 操作Oracle的php类
- 如何利用php+mysql保存和输出文件
- 消息持续发送的完整例子
- PHP+MYSQL的文章管理系统(一)
- PHP实现分页的一个示例
- 用cookies来跟踪识别用户
- 使用sockets:从新闻组中获取文章(一)
- 使用sockets:从新闻组中获取文章(三)
- PHP+MYSQL的文章管理系统(二)
- 使用sockets:从新闻组中获取文章(二)