Thursday, February 5, 2009
pxWeather gives you easy access to National Weather Service forecasts and current conditions for integration into your PHP application. To improve performance and decrease load on the data source, pxWeather can cache weather data locally.
Requirement
PHP 4.1.0 or later, installed with cURL support
Download pxweather
pxweather_1.0.zip(7 downloads)
pxweather_1.0.tar.gz(5 downloads)
Also filed in
|
|
Thursday, February 5, 2009
XMLTV is a suite of grabbers and tools to retrieve tv listings from one of the major television magazine websites (e.x. TV-Today) and to store it as XML data. The XML structure is independent of the source data. There also is a simple example script which shows how to use the classes and displays a [...]
Also filed in
|
|
Thursday, February 5, 2009
Molins is a framework for PHP 5 that was inspired by Struts, but also has much in common with the other sub-projects of Jakarta like Torque and Commons. It features very good integration with Smarty, can work with XSLT, and supports
logging, unit testing, and class packaging similar to Java.
free Download
Molins framework php5(9 downloads)
[...]
Also filed in
|
|
Wednesday, January 28, 2009
Free PHP RSS to Content Reuters the HTML it retrives from multiple RSS feeds. It accepts up to 5 feeds you give it, combines the feeds together, shuffles and inserts your preset number of listings from the feeds into your HTML for spiders to crawl. You can use Yahoo news feeds or any other newsfeed [...]
Also filed in
|
|
Free PHP Captcha script by ComputereducationWorld.com & WebWalas.com
Download Here : Free PHP Captcha Script
How to use:
Download the code
Put everything under one directory
Open index.php find code “<img src=”<?$DOCUMENT_ROOT?>/installdirectory/captcha.php” mce_src=”<?$DOCUMENT_ROOT?>/installdirectory/captcha.php” style=”border-color:#000000″ border=”1″>” replace the directory name “installdirectory” with your directory name.
Open captcha.php file and find: “$fonts[$DOCUMENT_ROOT."/installdirectory/ariblk.ttf"]["min"] = 35; //For Your Linux server
$fonts[$DOCUMENT_ROOT."/installdirectory/ariblk.ttf"]["max"] = 50; //For Your Linux server” and [...]
Also filed in
|
|
Script to check the size of your webpage/image
<?
function check_url_size($url){
$head = "";
$url_p = parse_url($url);
$host = $url_p["host"];
$path = $url_p["path"];
$fp = @fsockopen($host, 80, $errno, $errstr, 20);
if(!$fp)
{ return false; }
else
{
[...]
Also filed in
|
|