重庆分公司,新征程启航
为企业提供网站建设、域名注册、服务器等服务
主要的写出来啊
专注于为中小企业提供成都网站制作、做网站服务,电脑端+手机端+微信端的三站合一,更高效的管理,为中小企业汝州免费做网站提供优质的服务。我们立足成都,凝聚了一批互联网行业人才,有力地推动了上1000家企业的稳健成长,帮助中小企业通过网站建设实现规模扩充和转变。
$query="select
*
from
student
where
id=01";
$res=my_sql_query($query);
$date=array();//保存得到的数据
where($row=mysql_fetch_assoc($res)){
$date=$row['填写你表的字段'];
}
下面循环遍历$date输出到table就可以了啊
你是什么数据库,不同数据库调用方法也不同,比如mysql,一般写法,
?php
$link=mysql_connect("localhost","root","root");//连接数据库
mysql_select_db("库名");//选择库
$sql="select name,sex,age from user";
$rs=mysql_query($sql);
while($row=mysql_fetch_object($rs)){?
trtd?php echo $row['name']?/tdtd?php echo $row['sex']?/tdtd?php echo $row['age']?/td/tr
?php }?
不要用 \t 制表符。
用tabletrtd/td/tr/table
?php
header("Content-type:application/vnd.ms-excel"); //excel头信息
header("Content-Disposition:attachment;filename=test_data.xls");
?
table class="table" border="1"
thead
tr
th编号: /th
th门店 /th
th手机号码 /th
/tr
/thead
tbody
?php
//数据库查询
$dosql-Execute("select * from link_log order by id desc");
$i=$dosql-GetTotalRow();
while($result=$dosql-GetArray()){
$host=$result['host']; //门店
$mobile=$result['mobile']; //手机号码
?
td ?php echo $i;?/td
td ?php echo $host;?/td
td ?php echo $mobile;?/td
/tr
?php
$i--;
}
?
/tbody
/table
数据上传到php空间 。。数据代码填对应的数据内容就可以了。。比如images=“xxxx.jif”把文件gif上传到空间就好了。。路劲要指示真确。。。
?php
$Con = mysql_connect(.....);
//数据库库连接你自己写
echo 'tabletr';
$i = 0;
$Sql = mysql_query('select 字段名称 from 表名称');
while( $Rs = mysql_fetch_attay( $Sql ) ) {
$i++;
echo 'td' . $Rs['字段名称']. '/td';
if ( $i % 3 == 0 ) {
echo '/trtr';
}
}
echo '/tr/table';
动态生成html代码,然后打印出来就可以了呀。例如
//数据库查询代码省略
$table = 'table';
while($row = mysql_fetch_array($result)){
$table .= 'trtd'.$row["xx"].'/tdtd'.$row["yy"].'/tdtr';
}
$table .= '/table';
echo($table);