|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
刚开始写页面程序,调试完书中的例子。然后就可以尝试编写留言板了,excel|生成excel
我是着处置的
<?
header("Content-type:application/vnd.ms-excel");
header("Content-Disposition:filename=test.xls");
echo "编 号\t";
echo "公司称号\t";
echo "房 间 号\t";
echo "入驻日期\t";
echo "联 系 人\t";
echo "接洽德律风";
include("include/global.php");
$sql = "select id,company,roomid,indate,telephone,contanctman from company_info";
$db->query($sql);
$i = 0;
while($db->records())
{
echo "\n";
echo $db->get('id');
echo "\t";
echo $db->get('company');
echo "\t";
echo $db->get('roomid');
echo "\t";
echo $db->get('indate');
echo "\t";
echo $db->get('contanctman');
echo "\t";
echo $db->get('telephone');
}
$i++;
?>
__________________
水中的鱼,无拘无束的呼吸。
HTML中的任何元素都要亲自实践,只有明白了什么元素会起到什么效果之后,你才会记忆深刻,而一味的啃书,绝对是不行的,我想大部分新手之所以觉得概念难学,大部分是一个字“懒”,懒是阻止进步的最大敌人,所以克服掉懒的习惯,才能更快的学好一样东西。 |
|