/[dtapublic]/to_be_filed/webprojs/php_libraries/php_library/fboprime/htmlformatx.inc
ViewVC logotype

Annotation of /to_be_filed/webprojs/php_libraries/php_library/fboprime/htmlformatx.inc

Parent Directory Parent Directory | Revision Log Revision Log


Revision 35 - (hide annotations) (download)
Sat Oct 8 23:35:33 2016 UTC (7 years, 8 months ago) by dashley
File size: 1917 byte(s)
Initial commit.
1 dashley 35 <?php
2     //$Header: /hl/cvsroots/gpl01/gpl01/webprojs/fboprime/sw/phplib/htmlformatx.inc,v 1.1 2006/10/22 02:03:45 dashley Exp $
3     //********************************************************************************
4     //htmlformatx.inc--FboPrime HTML Formatting Functions Not Used for Dayview
5     // Scheduler Page
6     //Copyright (C) 2006 David T. Ashley
7     //
8     //This program is free software; you can redistribute it and/or
9     //modify it under the terms of the GNU General Public License
10     //as published by the Free Software Foundation; either version 2
11     //of the License, or (at your option) any later version.
12     //
13     //This program is distributed in the hope that it will be useful,
14     //but WITHOUT ANY WARRANTY; without even the implied warranty of
15     //MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16     //GNU General Public License for more details.
17     //
18     //You should have received a copy of the GNU General Public License
19     //along with this program; if not, write to the Free Software
20     //Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21     //********************************************************************************
22     //This file contains functions that assist in formatting HTML. Please also see
23     //htmlformat.inc.
24     //--------------------------------------------------------------------------------
25     require_once("htmlformat.inc");
26     //--------------------------------------------------------------------------------
27     //Outputs the number of "&nbsp;" tokens specified.
28     //
29     function HTMLFORMAT_nbsp_output($count)
30     {
31     $s = "";
32    
33     for ($i=0; $i<$count; $i++)
34     {
35     $s .= "&nbsp;";
36     }
37    
38     HTMLFORMAT_echo_noop_nl($s);
39     }
40     //--------------------------------------------------------------------------------
41     //End of $RCSfile: htmlformatx.inc,v $.
42     //--------------------------------------------------------------------------------
43     ?>

dashley@gmail.com
ViewVC Help
Powered by ViewVC 1.1.25