當前位置: 首頁>>代碼示例>>PHP>>正文


PHP DataGrid::printar方法代碼示例

本文整理匯總了PHP中DataGrid::printar方法的典型用法代碼示例。如果您正苦於以下問題:PHP DataGrid::printar方法的具體用法?PHP DataGrid::printar怎麽用?PHP DataGrid::printar使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在DataGrid的用法示例。


在下文中一共展示了DataGrid::printar方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1:

To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
    <head>
        <style>
            .fila {font-family: 'Asap',sans-serif;;font-size:10pt;color:#666;text-decoration:none;}
            .normaln {font-family: 'Asap',sans-serif;;font-size:10pt;color:#666;font-weight:bold;text-decoration:none;}
            .cabecera:hover {text-decoration:underline;}
            .normalo {font-family: 'Asap',sans-serif;;font-size:10pt;color:#666;font-weight:bold;text-decoration:none;}
            .normalon {font-family: 'Asap',sans-serif;;font-size:10pt;color:#666;font-weight:bold;text-decoration:none;}
            .normalr {font-family: 'Asap',sans-serif;;font-size:10pt;color:#FF0000;font-weight:bold;text-decoration:none;}
            .normalp {font-family: 'Asap',sans-serif;;font-size:8pt;color:#666;text-decoration:none;}
            .normalpo {font-family: 'Asap',sans-serif;;font-size:9pt;color:#666;font-weight:bold;text-decoration:underline;}
            .normalmini {font-family: 'Asap',sans-serif;;font-size:6pt;color:#666;text-decoration:none;} 
            .pie {font-size:10pt;color:000000;font-family: 'Asap',sans-serif;;text-decoration:none}
            .enlace {font-family: 'Asap',sans-serif;;font-size:10pt;color:#666;text-decoration:none}
            .enlace:hover {text-decoration:none;}
            .enlacen {text-decoration:none;font-family: 'Asap',sans-serif;;font-size:10pt;font-weight:bold;color:#666;}
            .sub {font-family: 'Asap',sans-serif;;font-size:11px;color:#666;font-weight:bold;text-decoration:underline;}
        </style>
    </head>
    <body>
    <?php 
require_once 'DataGrid.php';
$query = "select AVDESA as Actividad,ecdesc as Descripcion,ecdate as Fecha,cndesc as Canal, def.*\n        from def,pfcfunc,pfcanal,PFACTIV\n        where attipo=ectipo and atcicl=eccicl and atfunc=ecfunc and cncanal=atcanal and ECACTV=AVCODI\n        and AVFLG1='E'\n        order by ECACTV,ecdesc,attipo,atcicl,atfunc,atcanal";
DataGrid::printar($query);
?>
    </body>
</html>
開發者ID:raulgl,項目名稱:PHPDataGrid,代碼行數:30,代碼來源:index.php


注:本文中的DataGrid::printar方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。