16 projects tagged "GPL"
DHCP Lease Query in PHP is a PHP class that will allow you to send DHCPLEASEQUERY packets to inquire about known leases from a remote DHCP server. It is similar in nature to ISC's OMAPI but without the hangs it creates, nor does it cause dhcpd to behave in a single-threaded fashion while talking to it. After all, it emulates an actual DHCP "helper" (relay agent) and, as such, all queries travel over IP. It is based on RFCs related to DHCP and follows the RFCs as closely as possible.
Easy Debugger is a simple class that makes debugging complex sites very simple. The class allows you to clearly and easily output strings, variables, and objects and color code them for easier reading. It also makes it incredibly simple to output strings, variables, or even objects to email for simple troubleshooting or AJAX pages and pages where reload doesn't allow debugging. It saves debug output until the end of the page; groups all outputs from a page together; groups all outputs from specific files together; has easy color coding for advanced troubleshooting; shows line numbers and file names so you don't lose debug items; and has simple helper functions to speed up use. Debugs can be left on while the site is live, with no unwanted interruption. This code has been used on over 100 sites, from simple HTML pages to complex Web applications.
QR code generator is a PHP class that can be used to generate QR Code images using Google Chart API. It can send an HTTP request to the Google Chart API Web server to request the generation of a PNG image that represents the QR code graphic for a given information snippet. Currently the class can request the generation of QR codes for information snippets of the following types: bookmark, text, SMS message, phone number, contact information, e-mail message, geo-location, WIFI access, i-appli metadata, or abitrary content-type. The generated QR code image can be returned as a string, served for download, or returned as a URL string.
Curl multi sitemap is a PHP class that can be used to generate multiple sitemaps by crawling sites. It can crawl one or more sites to retrieve their pages and follow links recursively and determine the addresses of all pages to include in an XML sitemap. It can ignore given URLs to avoid crawling and including in the sitemap. The class uses the Curl extension multi-request support to retrieve multiple pages at the same time. You can also notify such services as Google, Yahoo, Bing, Ask, and Moreover about your sitemap update.
AJAX Calendar is a PHP class that can be used to display month calendars that can be browsed using AJAX. It can generate HTML and JavaScript to display a month calendar with links to browse the months using AJAX to avoid page reloading. The class can make given days be displayed as links to event pages. The browsing may be restricted to given dates. The months and week day names are customizable. The presentation details may be customized using CSS.
Guitar Chord API class can be used to search for guitar chords using the Guitar Chord API. It can send an HTTP request to the Guitar chord API Web server to find chord variations based on given data about a chord by specifying the chord name, chord modification, and/or string/fret combination.
Pop under class is a PHP class that can be used to display interstitial advertising. It generates HTML and JavaScript that makes an advertising page appear on the current page and then automatically disappears if the user clicks on the skip link or does not click on the advertising after a few seconds. The advertising display time is configurable. You may also choose not to expose the same user to the same advertisement again until a given period has passed. The class may invoke a given callback function when the user clicks on the advertisement or in the skip links.
CSS sprite class is a PHP class that can be used to generate sprite images and CSS for use in Web pages. It can take a list of images and generates a single sprite image with all the images inside. The class can also generate CSS style definitions to use in Web pages that need to use the images from the generated sprite image.