⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 listtop.php

📁 开源的 库存管理系统 www.minierp.cn php+ mysql
💻 PHP
字号:
<?php	$xtpl=new XTemplate ("../accounts/listtop.html");	$conn = phpmkr_db_connect(HOST, USER, PASS, DB, PORT);    $sSql ="SELECT * FROM `accounts` order by AUTOID DESC  LIMIT 0 , 5";	$rs  = phpmkr_query($sSql,$conn) or die("Failed to execute query: " . phpmkr_error() . '<br>SQL: ' . $sSql);    while ($row = mysql_fetch_array($rs, MYSQL_ASSOC)) {		$xtpl->assign("DATA",$row);		/* assign array data */		$xtpl->parse("toptable.table.row");			/* parse a row */	}		$xtpl->parse("toptable.table");					/* parse the table */		$xtpl->parse("toptable");	$xtpl->out("toptable");?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -