PHP Class 'Simple HTML form creation' released
Grok Headline matches for PHP Class 'Simple HTML form creation' released
PHP Class 'Simple Object' released
PHP Class 'Simple Object' released
04/21/2004 06:25 PMThis package provides a base class that has common functions for
accessing class variables. It provides to any derived class the same
interface of setter and getter functions, import(), export(),
append(), register_filter(), unregister_filter(), apply_filter() etc..
A template engine class, a database query result fetcher class are
just two examples of derived classes that share the same interface
provided by the base class.
PHP Class 'Simple TCP Daemon' released
PHP Class 'Simple TCP Daemon' released
08/15/2002 01:31 AMThis class lets you write Simple daemons. The features of this class
are:
* Support running as inetd/standalone app
* Validate commands and handle commands through callbacks
PHP Class 'Simple Login' released
PHP Class 'Simple Login' released
02/17/2004 07:45 PMThis class is meant to manage the access permiossios of multiple users
to Web pages of a site.
It can be used to ask for your site users to authenticate to have
access to protected pages. You only need to insert one line of code at
the top of your site protected pages to use this system.
It provides an administration manager interface.
It uses sessions, so it does not require the use of a database.
PHP Class 'Simple MSN Class' released
PHP Class 'Simple MSN Class' released
12/16/2003 07:41 PMThis class is meant to connect to a MSN Messenger server, login as a
given user and handle chat requests with other users.
The package comes with a separate class that acts as robot that
interacts with other connected users.
The output and the comments in this class are written in Chinese.
PHP Class 'Simple Histogram' released
PHP Class 'Simple Histogram' released
03/08/2004 11:22 PMThis package is meant to generate a graphic image that represents an
histogram from a given set of data values in an array.
It can draw a graph of bars with the supplied values, with a specified
with and height, with optional horizontal and vertical axis scales and
labels and the possibility of choosing the colors of the background
and the axis labels. The colors of the bars are picked by the class
automatically.
The graph image is created in true color and outputted in the PNG
format using the PHP GD extension.
The class generate HTML IMG tags with the SRC attribute pointing to an
URL based on the current script URL that passes the necessary
parameters to the class to output the image graphic in the PNG format.
PHP Class 'Simple Mini Poll' released
PHP Class 'Simple Mini Poll' released
01/18/2004 08:11 PMThis package is meant to create online surveys. It lets you create Web
based polls with a single question for which the users can only pick
one answer of multiple answers. There is no limit of possible answers
per poll.
The poll questiom, the possible answers and the respective vote count
are store in MySQL database tables.
The system does not require authentication nor keeps track of the
address of the users but has protection to prevent that users of the
same IP address vote more than once for a given period.
The class can generate HTML forms presenting a poll in a Web page, as
well display the table of the current results.
A separate class can generate a HTML based Web interface to create,
activate and delete polls.
PHP Class 'Simple banner rotator'
released
PHP Class 'Simple banner rotator'
released
11/15/2002 07:51 PMThis is simple banner rotator. It just picks all files from a
specified directory, shuffles them and shows one-by-one, once per page
view. Very simple and easy to use.
PHP Class 'simple-text-counter' released
PHP Class 'simple-text-counter' released
11/06/2002 07:34 PMSimple text-file-based counter. Can record recent IPs to prevent
"counter-boosts". Timeout is configurable.
PHP Class 'Simple Users Online' released
PHP Class 'Simple Users Online' released
01/08/2004 08:14 PMThis class is meant to keep track of the users currently accessing a
site.
The class stores the unique IP addresses of each users online in a
database. The class tries to determine the real IP address of uses
behind proxy servers.
The class also performs the maintenance task of deleting all the
records of user IP addresses that are stored before a given timeout
period specified in a class variable.
The class count the number of user accessing the site by counting the
number of unique user IP address records currently stored in the
database.
PHP Class 'Convert Class To HTML Table'
released
PHP Class 'Convert Class To HTML Table'
released
02/10/2004 02:46 AMThis class is meant to display the structure of any class as an HTML
table.
The class being displayed can have variables that contain objects of
other classes or arrays and treats those variables each accordingly.
PHP Class 'Html Form Parser' released
PHP Class 'Html Form Parser' released
04/24/2004 06:42 PMThis class is meant to parse an HTML document to extract information
about any forms contained in it.
The class return associative array that contains the details about
these form elements:
- Form attributes like: action, name, method, enctype
- Inputs of type hidden, text, password, textarea, checkbox, radio,
submit, reset, button, image, select and its options.
HTML Form Genie
HTML Form Genie
02/18/2004 05:29 PMHTML Form Genie Version 1.2.7 (devel) released
validate_form.js: HTML form validation
validate_form.js: HTML form validation
07/05/2004 03:44 PMvalidate_form.js: Version 1.9b released
DevArticles: HTML Quickform for Form
Processing
DevArticles: HTML Quickform for Form
Processing
09/02/2004 07:54 AMIn
Using HTML_Quickform for Form
Processing, the author introduces you to a very powerful (and
widely used) PEAR package to help you keep a consistent look across
all of the forms of your site (not to mention the functionality).
PHP Class 'PHP or Java Class Code
Generator' released
PHP Class 'PHP or Java Class Code
Generator' released
03/06/2004 02:00 AMThis package is meant is automate the generation of classes to access
databases in Java beans style.
It uses the Fast Template engine to process template files that define
the skeleton of functions and variables of classes that store and
retrieve data object property values from a given database table,
getter and setter functions to access those properties and a function
to delete a data object row from the respective database table.
The package comes with templates to generate classes either in PHP or
Java. The PHP template defines code to access data objects in a MySQL
database. The Java template defines code to access data objects in any
database supported by JDBC.
PHP Class 'calend.class.php' released
PHP Class 'calend.class.php' released
01/03/2003 07:52 PMThis class generates HTML calendars in the portuguese language.
In portuguese:
Esta classe gera um calendário em português em HTML.
PHP Class 'Bs_CsvUtil.class.php'
released
PHP Class 'Bs_CsvUtil.class.php'
released
11/08/2002 08:17 PMFeatures:
supports any separator char sequence, default is semicolon ";".
supports separator characters in the values. eg you use a ; as
separator, your line may look like
blah;hello world;"foo";"foo;bar";"this is a ""string""";got it?;foo
as you can see, the values can be in "quotes". if your text uses
quotes itself as in the "string"
example, they are escaped in ms-style with 2 quotes. and by using
quotes we can even have your
separator inside the text (example "foo;bar").
line breaks. a csv line may spread over multiple lines using crlf in a
field value.
see the checkMultiline param and the _checkMultiline() method.
PHP Class 'Bs_StopWatch.class.php'
released
PHP Class 'Bs_StopWatch.class.php'
released
11/07/2002 07:59 PMYou can take times during a code run and at the end get a time table
as HTML or text table. The output will contain total and as delta
between each take in microseconds.
Free Code; This Class is part of the BlueShoes PHP Application
Framework, see blueshoes.org.
Class-DBI-Plugin-HTML-0.7
Class-DBI-Plugin-HTML-0.7
08/03/2004 11:45 PMClass::DBI::Plugin::HTML 0.7
Class::DBI::Plugin::HTML 0.7
08/04/2004 01:26 AMA module to generate HTML tables and forms in conjunction with
Class::DBI.
Class::DBI::Plugin::HTML 0.6
Class::DBI::Plugin::HTML 0.6
04/15/2004 06:22 AMA module to generate HTML tables and forms in conjunction with
Class::DBI.
Class::DBI::Plugin::HTML 0.8
Class::DBI::Plugin::HTML 0.8
08/15/2004 02:02 AMA module to generate HTML tables and forms in conjunction with
Class::DBI.
Class-DBI-Plugin-HTML-0.6
Class-DBI-Plugin-HTML-0.6
04/11/2004 11:46 PMClass-DBI-Plugin-HTML-0.8
Class-DBI-Plugin-HTML-0.8
08/15/2004 12:47 AMLabour 'party of wealth creation'
Labour 'party of wealth creation'
04/14/2005 04:01 AMTony Blair will claim Labour is "the party of wealth creation" in a
keynote speech on Thursday.
HTML Map Designer Pro Has Been Released
HTML Map Designer Pro Has Been Released
04/17/2005 04:12 AMMap Designer is an Image Mapping Utility [PRWEB Apr 17, 2005]
GoodPage 1.0 HTML/CSS application
released
GoodPage 1.0 HTML/CSS application
released
03/22/2005 03:40 PMGoodPage 1.0 is a new graphical HTML/CSS (Cascading Style Sheets)
authoring tool...
ExcelEverywhere for HTML 3.0 (2.9.1.8)
Beta Released
ExcelEverywhere for HTML 3.0 (2.9.1.8)
Beta Released
05/17/2004 12:08 PMHTML Editor PageSpinner Update Released
HTML Editor PageSpinner Update Released
08/13/2002 07:01 AMMac Observer Aug 13 2002 2:40AM ET
New HTML Editor Released From Taco
Software
New HTML Editor Released From Taco
Software
08/05/2002 10:43 PMMac Observer Aug 4 2002 4:09PM ET
HTML Editor PageSpinner Beta Version
Released
HTML Editor PageSpinner Beta Version
Released
11/05/2003 06:03 PMMac Observer Nov 5 2003 4:10PM ET
SimpletextCompiler Beta Released With
Improved HTML Formatting
SimpletextCompiler Beta Released With
Improved HTML Formatting
09/12/2002 04:12 PMMac Observer Sep 12 2002 2:50PM ET
PHP Class 'My Db' released
PHP Class 'My Db' released
06/09/2004 06:55 PMThis package is a SQL database wrapper supporting MySQL, Interbase and
MS SQL server.
It can establish database server connections, execute SQL queries,
retrieve query results into arrays and display query results as HTML
tables.
PHP Class 'My DB' released
PHP Class 'My DB' released
02/15/2004 07:40 PMThis class is a simple wrapper around MySQL database acess functions.
It provides wrapper functions around most of the PHP MySQL extension
function like database, connection, queries execution and result data
access, error message retrieval, database creation and locking of
tables.
PHP Class 'extIntegratedTemplate'
released
PHP Class 'extIntegratedTemplate'
released
09/03/2002 11:37 AMExtends PEAR-Templates for new input-tags.
Use this class extending the IntegratedTemplate-class from pear to let
you use a new html-tag.
this brings a popup-calendar to choose a date.
PHP Class 'Configurator' released
PHP Class 'Configurator' released
02/13/2004 08:02 PMThe class is meant to read and write configuration files with
structure similar to those of Apache.
This class was tested with a normal httpd.conf file of Apache. While
it could not read more than one directive with the same name, it could
parse that configuration file successfully.
PHP Class 'EMailRobot' released
PHP Class 'EMailRobot' released
09/03/2002 11:37 AME-mail robot, takes letters, parse and forms answer. Simple for
customize.
http://nemilya.narod.ru/erobot/ - uml diagrams.
PHP Class 'package' released
PHP Class 'package' released
09/03/2002 07:42 PMThe php-package is a new file format for web developers and customers.
With this format you can distribute any kind of software, formerly
written in PHP, like one setup.exe file. You simply offer one .phx.php
file and that´s all. The customer has to upload it and call it through
the browser once. After this, the whole package installs itself.
You can set a lot of options for the package during generation.
The whole documentation of the current php-package you can find at
www.ipunkt.biz
PHP Class 'download' released
PHP Class 'download' released
09/03/2002 11:37 AMThis class allows to download files with the appropriate headers.
Client web browsers recognize the headers, file and mime type and save
to disk or offer to open the file using a local application. Files
bigger than a given limit are automatically compressed defore
downloading to the client.
Grok Description matches for PHP Class 'Simple HTML form creation' released
GrokA matches for PHP Class 'Simple HTML form creation' released
PHP Class 'Simple HTML form creation' released