Another programmer's text editor has been added to the
Free Programmer's Editors and ASCII Text Editors
page. This one is primarily a C++ integrated development environment (IDE). That is, it is mainly for programmers using
the C++ programming language and includes
many features intended to make that task easier. Incidentally, if you are looking for a web editor so that you can
create your own website,
you may find the Free HTML Editors and
WYSIWYG Web Editors page more relevant.
Package:
Summary:
Parse BBCode and convert it into HTML
Groups:
Author:
Description:
This class can be used to parse BBCode and convert it into HTML.
It searches and replaces BBCode tags in a given text string with equivalent HTML tags.
The class not only supports block and inline text formatting, but also supports embedding YoutTube and Google Video clips.
Package:
Summary:
Sort arrays or MySQL searches by relevance
Groups:
Author:
Description:
This class can be used to sort arrays or MySQL searches by relevance.
It can search for a string in an array of a MySQL query result.
The class returns an array of search result entries that is sorted by a criteria of relevance implemented within the class.
A number representing the relevance is returned within the sorted search results.
Package:
Summary:
Display MySQL query results in a sortable table
Groups:
Author:
Description:
This class can be used to display MySQL query results in a sortable table.
It executes a given MySQL query and generates HTML and JavaScript to display the query results in an HTML table.
The table can be sorted dynamically using a jQuery library table sorter plug-in.
Package:
Summary:
Create a color scheme from a base color
Groups:
Author:
Description:
This class can be used to create a color scheme from a base color.
It takes a base color and creates a list of derived colors that consists of several lighter and darker variants of the base color.
The class returns an associative array with generated color values in RGB with entry names prefixed with the original color name.
The array also returns HTML image tags to display the colors in a Web page using transparent images with the background color set to the generated color values.
Package:
Summary:
Check if an e-mail is valid using SMTP
Groups:
Author:
Description:
This class can be used to check if an e-mail is valid using the SMTP protocol.
It can connect to an SMTP server defined by the MX records of the domain of the address to validate.
The class simulates the delivery of a message to see if the given recipient address is accepted as valid.
Package:
Summary:
Class to check e-mail
Groups:
Author:
Description:
This class can be used to check the e-mail is valid and exist.
Package:
Summary:
Perform CAPTCHA validation asking questions
Groups:
Author:
Description:
This class can be used to perform CAPTCHA validation asking questions to the user.
It can generate a question from a list of few possibilities picking random values of colors or numbers.
The correct answer is stored in a session variable for subsequent verification.