index.php
来自「极限网络智能办公系统 Office Automation V3.0官方100%源」· PHP 代码 · 共 66 行
PHP
66 行
<?
include_once("inc/auth.php");
include_once("inc/utility_all.php");
$ARRAY_FIELD1=explode(",",$ARRAY_FIELD);
$graphValues1=explode(",",$graphValues);
?>
<html>
<head>
<title>客户统计结果</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body topmargin="0">
<div align="left">
<TABLE>
<tr align="center">
<td> </td>
</tr>
<TR align="center">
<td align="center" valign=top>
<table border="0" cellspacing="1" width="95%" class="small" bgcolor="#000000" cellpadding="3">
<?
$ARRAY_COUNT=sizeof($ARRAY_FIELD1);
for($I=0;$I<$ARRAY_COUNT-1;$I++)
{
if(($I+1)%2==1)
$TableLine="TableLine1";
else
$TableLine="TableLine2";
?>
<tr class="<?=$TableLine?>">
<td nowrap align="center" bgcolor="#D3E5FA"><?=$ARRAY_FIELD1[$I]?></td>
<td nowrap align="center" width="50"><?=$graphValues1[$I]?></td>
</tr>
<?
}
?>
</table>
</td>
<td>
</td>
<TD align="center">
<?
if($type=="1")
{
?>
<img src="staticspaint.php?ARRAY_FIELD1=<?=$ARRAY_FIELD?>&graphValues1=<?=$graphValues?>&unit=<?=$unit?>">
<?
}
else
{
?>
<img src="cakeimg.php?ARRAY_FIELD1=<?=$ARRAY_FIELD?>&graphValues1=<?=$graphValues?>">
<?
}
?>
</TD>
</tr>
</TABLE>
</div>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?