PHP and XML

100% Free PHP Scripts, Download & Use

PHP class to retrieve, parse, and organize weather data

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)

PHxmltvParser for TV listing for PHP

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 [...]

Molins framework for PHP 5

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)

[...]

Free PHP RSS to HTML

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 [...]

Free Captcha PHP Script

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 [...]

Script to check the size of your webpage or image

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  

 

   {  

 

    [...]